Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12954 - (hide annotations) (download)
Tue Aug 14 13:43:45 2012 UTC (11 years, 8 months ago) by niro
Original Path: trunk/core/autoconf26/autoconf26-2.69-r1.smage2
File size: 784 byte(s)
-disabled src_check atm -fixme
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 niro 12954 msetfeature "!check"
21 niro 12953
22     SRC_URI=(
23     gnu://autoconf/${SRCFILE}
24     mirror://autoconf/${SRCFILE}
25     )
26    
27     UP2DATE="updatecmd \"http://ftp.gnu.org/gnu/${PNAME/[0-9]*/}?C=M;O=A\" | grep ${PVER:0:3} | lasttarball xz"
28    
29     src_compile()
30     {
31     cd ${SRCDIR}
32    
33     mconfigure --program-suffix="-${PVER}" || die
34    
35     # manpages should not be versionized
36     sed -i "/^program_transform_name/s:-${PVER}::" man/Makefile || die
37    
38     # doesn't like more jobs than 1
39     mmake -j1 || die
40     }