New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/autoconf/Portfile

Revision 52416, 1.4 KB (checked in by ram@…, 3 weeks ago)

devel/autoconf: whitespace only changes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem       1.0
4
5name             autoconf
6version          2.63
7categories       devel
8maintainers      ram openmaintainer
9platforms        darwin
10
11description      Automatically configures software for compilation
12long_description \
13  Autoconf is an extensible package of m4 macros that produce shell \
14  scripts to automatically configure software source code packages. \
15  These scripts can adapt the packages to many kinds of UNIX-like \
16  systems without manual user intervention. Autoconf creates a \
17  configuration script for a package from a template file that lists \
18  the operating system features that the package can use, in the form \
19  of m4 macro calls.
20
21homepage         http://www.gnu.org/software/autoconf/
22master_sites     gnu
23use_bzip2        yes
24
25checksums        md5 7565809ed801bb5726da0631ceab3699 \
26                 sha1 f15e14aa34acf871b47f659ef99a2e6707db4a18 \
27                 rmd160 273448a60bc4dfcfcb3ee455ef012333eeca3256
28
29depends_lib      path:bin/perl:perl5 \
30                 port:m4 \
31                 port:help2man
32
33# If libtool is eventually installed, it will provide glibtoolize (not libtoolize)
34post-patch {
35  reinplace "s|'libtoolize'|'glibtoolize'|" ${worksrcpath}/bin/autoreconf.in
36}
37
38configure.perl   ${prefix}/bin/perl
39
40livecheck.check  regex
41livecheck.url    http://ftp.gnu.org/gnu/${name}/?C=M&O=D
42livecheck.regex  ${name}-(\\d+\\.\\d+)
Note: See TracBrowser for help on using the browser.