Changeset 1942 for trunk/dports


Ignore:
Timestamp:
Feb 2, 2003, 9:17:11 PM (21 years ago)
Author:
michaelm
Message:

destroot

Location:
trunk/dports/net
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/net/fetch/Portfile

    r1144 r1942  
    1616
    1717install         { cd ${workpath}/${worksrcdir}
    18                   system "install -o root -m 755 -d ${prefix}/bin"
    19                   system "install -o root -m 555 fetch ${prefix}/bin"
    20                   system "install -o root -m 755 -d ${prefix}/man/man1"
     18                  system "install -o root -m 755 -d ${destroot}${prefix}/bin"
     19                  system "install -o root -m 555 fetch ${destroot}${prefix}/bin"
     20                  system "install -o root -m 755 -d ${destroot}${prefix}/man/man1"
    2121                  system "install -o root -m 644 -c fetch.1 \
    22                   ${prefix}/man/man1" }
     22                  ${destroot}${prefix}/man/man1" }
    2323
    24 contents        bin/fetch \
    25                 man/man1/fetch.1
  • trunk/dports/net/libfetch/Portfile

    r1144 r1942  
    1616build.env       LDADD=-install_name\\ ${prefix}/lib/libfetch.${libver}.dylib
    1717install         { cd ${workpath}/${worksrcdir}
    18                   system "install -o root -m 755 -d ${prefix}/lib"
     18                  system "install -o root -m 755 -d ${destroot}${prefix}/lib"
    1919                  system "install -o root -m 644 -c libfetch.${libver}.dylib \
    20                   ${prefix}/lib"
    21                   system "ln -sf libfetch.3.dylib ${prefix}/lib/libfetch.dylib"
    22                   system "install -o root -m 755 -d ${prefix}/include"
    23                   system "install -o root -m 644 -c fetch.h ${prefix}/include"
    24                   system "install -o root -m 755 -d ${prefix}/man/man3"
     20                  ${destroot}${prefix}/lib"
     21                  system "ln -sf libfetch.3.dylib ${destroot}${prefix}/lib/libfetch.dylib"
     22                  system "install -o root -m 755 -d ${destroot}${prefix}/include"
     23                  system "install -o root -m 644 -c fetch.h ${destroot}${prefix}/include"
     24                  system "install -o root -m 755 -d ${destroot}${prefix}/man/man3"
    2525                  system "install -o root -m 644 -c fetch.3 \
    26                   ${prefix}/man/man3" }
     26                  ${destroot}${prefix}/man/man3" }
    2727
    28 contents        lib/libfetch.dylib \
    29                 lib/libfetch.3.dylib \
    30                 include/fetch.h \
    31                 man/man3/fetch.3
Note: See TracChangeset for help on using the changeset viewer.