Magellan Linux

Annotation of /trunk/core/autoconf27/autoconf27-2.71-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33399 - (hide annotations) (download)
Fri Jul 14 22:27:31 2023 UTC (10 months, 1 week ago) by niro
File size: 837 byte(s)
-ver bump to 2.71-r1
1 niro 33399 # $Id$
2    
3     PNAME="autoconf27"
4     PVER="2.71"
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-7
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]*/} | grep ${PVER:0:3} | highesttarball xz"
28    
29     src_prepare()
30     {
31     munpack ${SRCFILE} || die
32     cd ${SRCDIR}
33    
34     # use versionized pkgdatadir
35     find -name Makefile.in -exec sed -i '/^pkgdatadir/s:$:-@VERSION@:' {} + || die
36     }
37    
38     src_compile()
39     {
40     cd ${SRCDIR}
41    
42     mconfigure --program-suffix="-${PVER}" || die
43    
44     # doesn't like more jobs than 1
45     mmake -j1 || die
46     }