Magellan Linux

Contents of /smage/trunk/core/automake112/automake112-1.12.6-r5.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10515 - (show annotations) (download)
Wed Aug 23 12:00:55 2017 UTC (6 years, 8 months ago) by niro
File size: 1692 byte(s)
-perl and up2date uri fixes
1 # $Id$
2
3 PNAME="automake112"
4 PVER="1.12.6"
5 PBUILD="r5"
6
7 PCAT="sys-dev"
8
9 DESCRIPTION="Used to generate Makefile.in from Makefile.am."
10 HOMEPAGE="http://www.gnu.org/software/automake/automake.html"
11
12 DEPEND=">= dev-lang/perl-5
13 >= sys-dev/autoconf-5"
14
15 SDEPEND=">= virtual/sed"
16
17 SRCFILE="automake-${PVER}.tar.xz"
18 SRCDIR="${BUILDDIR}/automake-${PVER}"
19
20 sminclude mtools
21
22 SRC_URI=(
23 gnu://automake/${SRCFILE}
24 mirror://automake/${SRCFILE}
25 mirror://automake/automake-1.12-infopage-namechange-2.patch
26 mirror://automake/automake-1.13-perl-5.26.patch
27 )
28
29 UP2DATE="updatecmd http://ftp.gnu.org/gnu/${PNAME/[0-9]*/} | grep \"$( echo ${PVER%.*} | sed 's:\.:\\.:g' )\" | highesttarball xz"
30
31 src_prepare()
32 {
33 munpack ${SRCFILE} || die
34 cd ${SRCDIR}
35
36 mpatch automake-1.12-infopage-namechange-2.patch || die
37 mpatch automake-1.13-perl-5.26.patch || die
38
39 sed -i \
40 -e "/^@setfilename/s|automake|automake${PVER%.*}|" \
41 -e "s|automake: (automake)|automake v${PVER%.*}: (automake${PVER%.*})|" \
42 -e "s|aclocal: (automake)|aclocal v${PVER%.*}: (automake${PVER%.*})|" \
43 doc/automake.texi || die
44
45 # fix help2man issues with newer perl version
46 sed -i \
47 's:doc/help2man --output=:doc/help2man --no-discard-stderr --output=:g' \
48 Makefile.in || die
49 }
50
51 src_compile()
52 {
53 cd ${SRCDIR}
54
55 # stupid configure script goes and run autoconf in a subdir,
56 # so 'ac-wrapper.pl' do not detect that it should use
57 # autoconf-2.5x
58 export WANT_AUTOCONF=2.5
59
60 mconfigure || die
61 mmake || die
62 }
63
64 src_install()
65 {
66 cd ${SRCDIR}
67
68 make DESTDIR=${BINDIR} install || die
69 rm -f ${BINDIR}/usr/bin/{aclocal,automake} || die
70
71 minstallinfo doc/*.info || die
72 minstalldocs COPYING NEWS README THANKS TODO AUTHORS ChangeLog || die
73 }