|
Revision 51173, 1.4 KB
(checked in by mww@…, 6 weeks ago)
|
|
version 1.11
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name automake |
|---|
| 6 | version 1.11 |
|---|
| 7 | categories devel |
|---|
| 8 | maintainers mww |
|---|
| 9 | description the gnu automake utility for generating Makefile.in |
|---|
| 10 | platforms darwin freebsd |
|---|
| 11 | long_description Automake is a tool for automatically generating \ |
|---|
| 12 | Makefile.in files from files called Makefile.am. Each \ |
|---|
| 13 | Makefile.am is basically a series of make variable \ |
|---|
| 14 | definitions, with rules being thrown in occasionally. The \ |
|---|
| 15 | generated Makefile.in files are compliant with the GNU \ |
|---|
| 16 | Makefile standards. |
|---|
| 17 | |
|---|
| 18 | homepage http://www.gnu.org/software/automake/ |
|---|
| 19 | master_sites gnu |
|---|
| 20 | checksums md5 4db4efe027e26b33930a7e151de19d0f \ |
|---|
| 21 | sha1 1ae8c15d91b8eb8728c35cf0901a02782830e9de \ |
|---|
| 22 | rmd160 65a65be39f9c1c43e1b65cfffe97fcce3f8eeb72 |
|---|
| 23 | use_bzip2 yes |
|---|
| 24 | |
|---|
| 25 | depends_build port:autoconf |
|---|
| 26 | depends_lib path:bin/perl:perl5 |
|---|
| 27 | |
|---|
| 28 | configure.args --infodir=${prefix}/share/info |
|---|
| 29 | configure.perl ${prefix}/bin/perl |
|---|
| 30 | |
|---|
| 31 | test.run yes |
|---|
| 32 | test.target check |
|---|
| 33 | |
|---|
| 34 | post-destroot { |
|---|
| 35 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
|---|
| 36 | xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog ChangeLog.00 \ |
|---|
| 37 | ChangeLog.01 ChangeLog.02 ChangeLog.03 ChangeLog.04 ChangeLog.96 \ |
|---|
| 38 | ChangeLog.98 INSTALL NEWS README TODO THANKS \ |
|---|
| 39 | ${destroot}${prefix}/share/doc/${name} |
|---|
| 40 | } |
|---|
| 41 | |
|---|
| 42 | livecheck.check regex |
|---|
| 43 | livecheck.url http://ftp.gnu.org/gnu/${name}/?C=M&O=D |
|---|
| 44 | livecheck.regex automake-(\[0-9\\\.]+\[0-9\])\\. |
|---|
| 45 | |
|---|