Changeset 1931 for trunk/dports


Ignore:
Timestamp:
Feb 2, 2003, 12:29:25 AM (21 years ago)
Author:
michaelm
Message:

destroot

Location:
trunk/dports/games
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/games/larn/Portfile

    r1202 r1931  
    2121
    2222install         { cd ${worksrcpath}
    23                   system "install -o root -m 755 -d ${prefix}/var/games/larn"
    24                   system "install -o root -m 755 -d ${prefix}/man/man6"
    25                   system "install -o root -m 755 -d ${prefix}/share/games/larn"
    26                   system "install -o root -m 755 -c larn ${prefix}/bin"
     23                  system "install -o root -m 755 -d ${destroot}${prefix}/var/games/larn"
     24                  system "install -o root -m 755 -d ${destroot}${prefix}/man/man6"
     25                  system "install -o root -m 755 -d ${destroot}${prefix}/share/games/larn"
     26                  system "install -o root -m 755 -c larn ${destroot}${prefix}/bin"
    2727                  system "install -o root -m 644 -c larn.6.gz  \
    28                     ${prefix}/man/man6"
     28                    ${destroot}${prefix}/man/man6"
    2929                  cd datfiles
    3030                  system "install -o root -m 644 -c larn.help \
    31                     ${prefix}/share/games/larn"
     31                    ${destroot}${prefix}/share/games/larn"
    3232                  system "install -o root -m 644 -c larnmaze \
    33                     ${prefix}/share/games/larn" }
     33                    ${destroot}${prefix}/share/games/larn" }
    3434
    35 contents        bin/larn \
    36                 man/man6/larn.6.gz \
    37                 share/games/larn/larn.help \
    38                 share/games/larn/larnmaze
  • trunk/dports/games/othello/Portfile

    r1528 r1931  
    99checksums       md5 046931bfe95f89b0f3c82f398dfedb2e
    1010
    11 contents        bin/othello \
    12                 man/man6/othello.6
  • trunk/dports/games/wtf/Portfile

    r1528 r1931  
    2121        cd ${worksrcpath}
    2222
    23         system "install wtf ${prefix}/bin"
     23        system "install -d ${destroot}${prefix}/bin"
     24        system "install wtf ${destroot}${prefix}/bin"
    2425
    25         system "install -d ${prefix}/man/man6"
    26         system "install wtf.6 ${prefix}/man/man6"
     26        system "install -d ${destroot}${prefix}/man/man6"
     27        system "install wtf.6 ${destroot}${prefix}/man/man6"
    2728
    28         system "install -d ${prefix}/share/misc"
    29         system "install acronyms ${prefix}/share/misc"
     29        system "install -d ${destroot}${prefix}/share/misc"
     30        system "install acronyms ${destroot}${prefix}/share/misc"
    3031}
    3132
    32 contents \
    33         bin/wtf \
    34         man/man6/wtf.6 \
    35         share/misc/acronyms
  • trunk/dports/games/wump/Portfile

    r1202 r1931  
    1818patchfiles      patch-wump.c
    1919
    20 install         { system "install -o root -m 755 -d ${prefix}/bin"
    21                   system "install -o root -m 755 -d ${prefix}/man/man6"
    22                   system "install -o root -m 755 -d ${prefix}/share/games"
     20install         { system "install -o root -m 755 -d ${destroot}${prefix}/bin"
     21                  system "install -o root -m 755 -d ${destroot}${prefix}/man/man6"
     22                  system "install -o root -m 755 -d ${destroot}${prefix}/share/games"
    2323                  system "install -o root -m 755 -c ${worksrcpath}/wump \
    24                     ${prefix}/bin"
     24                    ${destroot}${prefix}/bin"
    2525                  system "install -o root -m 644 -c ${worksrcpath}/wump.6.gz \
    26                     ${prefix}/man/man6"
     26                    ${destroot}${prefix}/man/man6"
    2727                  system "install -o root -m 644 -c ${worksrcpath}/wump.info \
    28                     ${prefix}/share/games" }
     28                    ${destroot}${prefix}/share/games" }
    2929
    30 contents        bin/wump \
    31                 man/man6/wump.6.gz \
    32                 share/games/wump.info
Note: See TracChangeset for help on using the changeset viewer.