Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32201 - (hide annotations) (download)
Mon Apr 29 11:54:12 2019 UTC (5 years ago) by niro
File size: 775 byte(s)
-release branches/R11-unstable
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 niro 29704 UP2DATE="updatecmd http://ftp.gnu.org/gnu/${PNAME/[0-9]*/} | grep ${PVER:0:3} | highesttarball xz"
28 niro 12953
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     }