Magellan Linux

Annotation of /smage/trunk/core/autoconf26/autoconf26-2.68-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 851 - (hide annotations) (download)
Fri Dec 3 20:03:29 2010 UTC (13 years, 5 months ago) by niro
File size: 784 byte(s)
auto added: ver bump to 2.68-r1
1 niro 851 # $Id$
2    
3     PNAME="autoconf26"
4     PVER="2.68"
5     PBUILD="r1"
6    
7     PCATEGORIE="sys-dev"
8     STATE="unstable"
9    
10     DESCRIPTION="Used to generate configure scripts."
11     HOMEPAGE="http://www.gnu.org/software/autoconf/autoconf.html"
12    
13     DEPEND=">= sys-apps/texinfo-4.3
14     >= sys-dev/m4-1.4
15     >= dev-lang/perl-5"
16    
17     SRCFILE="autoconf-${PVER}.tar.bz2"
18     SRCDIR="${BUILDDIR}/autoconf-${PVER}"
19    
20     sminclude mbuild
21    
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"
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     }