|
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 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name gzip |
|---|
| 6 | version 1.3.12 |
|---|
| 7 | categories archivers |
|---|
| 8 | platforms darwin freebsd |
|---|
| 9 | maintainers mww |
|---|
| 10 | description gnu replacement utility for unix compress |
|---|
| 11 | long_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 | |
|---|
| 16 | homepage http://www.gzip.org/ |
|---|
| 17 | master_sites gnu |
|---|
| 18 | checksums sha1 264e82876f201d9576626fbb1e0e9fe458efe9b9 \ |
|---|
| 19 | rmd160 857172d207d87abe5fb52f6e7dd0474a421b0d79 |
|---|
| 20 | |
|---|
| 21 | configure.args --mandir=\\\${prefix}/share/man \ |
|---|
| 22 | --infodir=\\\${prefix}/share/info \ |
|---|
| 23 | DEFS=NO_ASM |
|---|
| 24 | |
|---|
| 25 | test.run yes |
|---|
| 26 | test.target check |
|---|
| 27 | |
|---|
| 28 | destroot.destdir prefix=${destroot}${prefix} |
|---|
| 29 | |
|---|
| 30 | variant rsyncable description {support the --rsyncable flag} { |
|---|
| 31 | patchfiles-append patch-gzip-rsyncable.diff |
|---|
| 32 | } |
|---|