Magellan Linux

Contents of /smage/branches/alx07x-unstable/core/autoconf26/autoconf26-2.69-r5.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14693 - (show annotations) (download)
Tue Aug 4 11:45:17 2020 UTC (3 years, 8 months ago) by niro
File size: 784 byte(s)
-release branches/alx07x-unstable
1 # $Id$
2
3 PNAME="autoconf26"
4 PVER="2.69"
5 PBUILD="r5"
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 msetfeature "!check"
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 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 }