Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/archivers/gzip/Portfile

Revision 39748, 0.9 KB (checked in by mww@…, 4 months ago)

add variant for 'rsyncable' support; thanks to macports@… (#16446)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem 1.0
4
5name            gzip
6version         1.3.12
7categories      archivers
8platforms       darwin freebsd
9maintainers     mww
10description     gnu replacement utility for unix compress
11long_description \
12    gzip (GNU zip) is a compression utility designed to be a            \
13    replacement for compress. Its main advantages over compress are     \
14    much better compression and freedom from patented algorithms.
15
16homepage        http://www.gzip.org/
17master_sites    gnu
18checksums       sha1 264e82876f201d9576626fbb1e0e9fe458efe9b9 \
19                rmd160 857172d207d87abe5fb52f6e7dd0474a421b0d79
20
21configure.args  --mandir=\\\${prefix}/share/man \
22                --infodir=\\\${prefix}/share/info \
23                DEFS=NO_ASM
24
25test.run        yes
26test.target     check
27
28destroot.destdir    prefix=${destroot}${prefix}
29
30variant rsyncable description {support the --rsyncable flag} {
31    patchfiles-append patch-gzip-rsyncable.diff
32}
Note: See TracBrowser for help on using the browser.