Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/libtool/Portfile

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
3PortSystem      1.0
4
5name            libtool
6version         2.2.6a
7categories      devel sysutils
8maintainers     boeyms openmaintainer
9description     GNU Libtool - The GNU Portable Library Tool
10
11long_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
16homepage        http://www.gnu.org/software/libtool/
17platforms       darwin freebsd
18master_sites    gnu
19
20checksums       md5     8ca1ea241cd27ff9832e045fe9afe4fd \
21                sha1    7b547877b1b78b547343e4678a531aece8949904 \
22                rmd160  f8862338e2c6ea04332fd5aad4aad5bc35d0e152
23
24depends_build   port:automake
25
26worksrcdir      [strsed $distname {s/[a-z]*$//}]
27
28configure.args  --program-prefix=g
29
30use_parallel_build  yes
31
32post-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
39test.run        yes
40test.target     check
41
42livecheck.check regex
43livecheck.url   http://ftp.gnu.org/gnu/${name}/?C=M&O=D
44livecheck.regex ${name}-(\\d+(?:\\.\\d+)*\[a-z\]?)
Note: See TracBrowser for help on using the browser.