Ticket #12674: libarchive-2.2.6.diff

File libarchive-2.2.6.diff, 1.4 KB (added by nox@…, 17 years ago)
  • Portfile

     
    11# $Id$
    22
    3 PortSystem 1.0
     3PortSystem       1.0
     4
    45name             libarchive
    5 version          2.0.20
     6version          2.2.6
    67categories       archivers
    78maintainers      toby@macports.org
    89description      functions for reading and writing streaming archives
     10
    911long_description \
    1012        Libarchive is a programming library that can create and \
    1113        read several different streaming archive formats, including \
    1214        most popular tar variants and several cpio formats. It can \
    1315        also write shar archives.
     16
    1417homepage         http://people.freebsd.org/~kientzle/libarchive/
    1518platforms        darwin
    1619
    1720master_sites     ${homepage}src/
    18 checksums        sha1 d33e399547cebf075057091c16d51834eed01571
     21
     22checksums        md5 a8d23b9c37153093b2e6c03385fb3ad9 \
     23                 sha1 3e8b69479c1f9beaf01d3b1672573ac33a74b120 \
     24                 rmd160 2b0e6216512d22fda7d91091cbd9e2275719a975
    1925
    2026depends_lib      port:bzip2 port:zlib
    2127
    22 configure.args   --mandir=${prefix}/share/man \
    23                  --disable-static --enable-shared
     28configure.args   --disable-static
     29
     30post-destroot {
     31    set docdir ${prefix}/share/doc/${name}-${version}
     32    xinstall -d ${destroot}${docdir}
     33    xinstall -m 0644 -W ${worksrcpath} COPYING NEWS README ${destroot}${docdir}
     34}
     35