Magellan Linux

Annotation of /branches/R11-unstable/core/autoconf26/autoconf26-2.69-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12953 - (hide annotations) (download)
Tue Aug 14 13:23:23 2012 UTC (11 years, 8 months ago) by niro
Original Path: trunk/core/autoconf26/autoconf26-2.69-r1.smage2
File size: 763 byte(s)
auto added: ver bump to 2.69-r1
1 niro 12953 # $Id$
2    
3     PNAME="autoconf26"
4     PVER="2.69"
5     PBUILD="r1"
6    
7     PCAT="sys-dev"
8    
9     DESCRIPTION="Used to generate configure scripts."
10     HOMEPAGE="http://www.gnu.org/software/autoconf/autoconf.html"
11    
12     DEPEND=">= sys-apps/texinfo-4.3
13     >= sys-dev/m4-1.4
14     >= dev-lang/perl-5"
15    
16     SRCFILE="autoconf-${PVER}.tar.xz"
17     SRCDIR="${BUILDDIR}/autoconf-${PVER}"
18    
19     sminclude mbuild
20    
21     SRC_URI=(
22     gnu://autoconf/${SRCFILE}
23     mirror://autoconf/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd \"http://ftp.gnu.org/gnu/${PNAME/[0-9]*/}?C=M;O=A\" | grep ${PVER:0:3} | lasttarball xz"
27    
28     src_compile()
29     {
30     cd ${SRCDIR}
31    
32     mconfigure --program-suffix="-${PVER}" || die
33    
34     # manpages should not be versionized
35     sed -i "/^program_transform_name/s:-${PVER}::" man/Makefile || die
36    
37     # doesn't like more jobs than 1
38     mmake -j1 || die
39     }