Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10212 - (show annotations) (download)
Wed Aug 16 13:42:06 2017 UTC (6 years, 8 months ago) by niro
File size: 1607 byte(s)
auto added: ver bump to 1.12.6-r4
1 # $Id$
2
3 PNAME="automake112"
4 PVER="1.12.6"
5 PBUILD="r4"
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 )
27
28 UP2DATE="updatecmd \"http://ftp.gnu.org/gnu/${PNAME/[0-9]*/}?C=M;O=A\" | grep \"$( echo ${PVER%.*} | sed 's:\.:\\.:g' )\" | lasttarball xz"
29
30 src_prepare()
31 {
32 munpack ${SRCFILE} || die
33 cd ${SRCDIR}
34
35 mpatch automake-1.12-infopage-namechange-2.patch || die
36
37 sed -i \
38 -e "/^@setfilename/s|automake|automake${PVER%.*}|" \
39 -e "s|automake: (automake)|automake v${PVER%.*}: (automake${PVER%.*})|" \
40 -e "s|aclocal: (automake)|aclocal v${PVER%.*}: (automake${PVER%.*})|" \
41 doc/automake.texi || die
42
43 # fix help2man issues with newer perl version
44 sed -i \
45 's:doc/help2man --output=:doc/help2man --no-discard-stderr --output=:g' \
46 Makefile.in || die
47 }
48
49 src_compile()
50 {
51 cd ${SRCDIR}
52
53 # stupid configure script goes and run autoconf in a subdir,
54 # so 'ac-wrapper.pl' do not detect that it should use
55 # autoconf-2.5x
56 export WANT_AUTOCONF=2.5
57
58 mconfigure || die
59 mmake || die
60 }
61
62 src_install()
63 {
64 cd ${SRCDIR}
65
66 make DESTDIR=${BINDIR} install || die
67 rm -f ${BINDIR}/usr/bin/{aclocal,automake} || die
68
69 minstallinfo doc/*.info || die
70 minstalldocs COPYING NEWS README THANKS TODO AUTHORS ChangeLog || die
71 }