|
Revision 44442, 1.7 KB
(checked in by mww@…, 12 days ago)
|
|
version 1.21
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name gnutar |
|---|
| 6 | version 1.21 |
|---|
| 7 | categories archivers |
|---|
| 8 | maintainers mww |
|---|
| 9 | description tar version of the GNU project |
|---|
| 10 | long_description \ |
|---|
| 11 | the gnutar program creates, adds files to, or extracts files from \ |
|---|
| 12 | an archive file in gnutar format, called a tarfile. A tarfile is \ |
|---|
| 13 | often a magnetic tape, but can be a floppy diskette or any regular \ |
|---|
| 14 | disk file. |
|---|
| 15 | |
|---|
| 16 | homepage http://www.gnu.org/software/tar/ |
|---|
| 17 | master_sites gnu:tar |
|---|
| 18 | checksums md5 4f9028d231c3e7d7bdd658e14e74c2d1 \ |
|---|
| 19 | sha1 4563bc828e7d285eb466a9587af88e7e1556cf88 \ |
|---|
| 20 | rmd160 316e3148f0a392b66423fd73f7dae17cd2f03b90 |
|---|
| 21 | distname tar-${version} |
|---|
| 22 | use_bzip2 yes |
|---|
| 23 | platforms darwin |
|---|
| 24 | |
|---|
| 25 | depends_lib port:gettext port:libiconv |
|---|
| 26 | |
|---|
| 27 | configure.args --program-prefix=gnu \ |
|---|
| 28 | --infodir=${prefix}/share/info |
|---|
| 29 | |
|---|
| 30 | test.run yes |
|---|
| 31 | test.target check |
|---|
| 32 | |
|---|
| 33 | post-destroot { |
|---|
| 34 | xinstall -v -m 755 -d ${destroot}${prefix}/share/doc/${name} |
|---|
| 35 | xinstall -v -W ${worksrcpath} ABOUT-NLS AUTHORS COPYING ChangeLog \ |
|---|
| 36 | ChangeLog.1 INSTALL NEWS PORTS README THANKS TODO \ |
|---|
| 37 | ${destroot}${prefix}/share/doc/${name} |
|---|
| 38 | delete ${destroot}${prefix}/lib/charset.alias |
|---|
| 39 | file rename ${destroot}${prefix}/share/info/tar.info ${destroot}${prefix}/share/info/gnutar.info |
|---|
| 40 | file rename ${destroot}${prefix}/share/info/tar.info-1 ${destroot}${prefix}/share/info/gnutar.info-1 |
|---|
| 41 | file rename ${destroot}${prefix}/share/info/tar.info-2 ${destroot}${prefix}/share/info/gnutar.info-2 |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | livecheck.check regex |
|---|
| 45 | livecheck.url http://ftp.gnu.org/gnu/tar/?C=M&O=D |
|---|
| 46 | livecheck.regex tar-(\[0-9\.\]+\[0-9\])\\. |
|---|