Magellan Linux

Contents of /smage/trunk/core/autoconf26/autoconf26-2.68-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1750 - (show annotations) (download)
Mon Sep 19 09:41:25 2011 UTC (12 years, 7 months ago) by niro
File size: 767 byte(s)
auto added: ver bump to 2.68-r3
1 # $Id$
2
3 PNAME="autoconf26"
4 PVER="2.68"
5 PBUILD="r3"
6
7 PCATEGORIE="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.bz2"
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"
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 }