|
Revision 44538, 1.2 KB
(checked in by blb@…, 10 days ago)
|
|
devel/libtool - remove +doc variant which no longer works with libtool 2
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name libtool |
|---|
| 6 | version 2.2.6a |
|---|
| 7 | categories devel sysutils |
|---|
| 8 | maintainers boeyms openmaintainer |
|---|
| 9 | description GNU Libtool - The GNU Portable Library Tool |
|---|
| 10 | |
|---|
| 11 | long_description \ |
|---|
| 12 | GNU libtool is a generic library support script. Libtool hides the \ |
|---|
| 13 | complexity of using shared libraries behind a consistent, portable \ |
|---|
| 14 | interface. |
|---|
| 15 | |
|---|
| 16 | homepage http://www.gnu.org/software/libtool/ |
|---|
| 17 | platforms darwin freebsd |
|---|
| 18 | master_sites gnu |
|---|
| 19 | |
|---|
| 20 | checksums md5 8ca1ea241cd27ff9832e045fe9afe4fd \ |
|---|
| 21 | sha1 7b547877b1b78b547343e4678a531aece8949904 \ |
|---|
| 22 | rmd160 f8862338e2c6ea04332fd5aad4aad5bc35d0e152 |
|---|
| 23 | |
|---|
| 24 | depends_build port:automake |
|---|
| 25 | |
|---|
| 26 | worksrcdir [strsed $distname {s/[a-z]*$//}] |
|---|
| 27 | |
|---|
| 28 | configure.args --program-prefix=g |
|---|
| 29 | |
|---|
| 30 | use_parallel_build yes |
|---|
| 31 | |
|---|
| 32 | post-destroot { |
|---|
| 33 | set docdir ${prefix}/share/doc/${name}-${version} |
|---|
| 34 | xinstall -d ${destroot}${docdir} |
|---|
| 35 | xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README THANKS \ |
|---|
| 36 | TODO ${destroot}${docdir} |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | test.run yes |
|---|
| 40 | test.target check |
|---|
| 41 | |
|---|
| 42 | livecheck.check regex |
|---|
| 43 | livecheck.url http://ftp.gnu.org/gnu/${name}/?C=M&O=D |
|---|
| 44 | livecheck.regex ${name}-(\\d+(?:\\.\\d+)*\[a-z\]?) |
|---|