Magellan Linux

Contents of /smage/trunk/core/automake16/automake16-1.6.3-r6.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1458 - (show annotations) (download)
Thu Mar 3 14:16:17 2011 UTC (13 years, 1 month ago) by niro
File size: 1350 byte(s)
-rev bump for mass rebuild
1 # $Id$
2
3 PNAME="automake16"
4 PVER="1.6.3"
5 PBUILD="r6"
6
7 PCATEGORIE="sys-dev"
8 STATE="unstable"
9
10 DESCRIPTION="Used to generate Makefile.in from Makefile.am."
11 HOMEPAGE="http://www.gnu.org/software/automake/automake.html"
12
13 DEPEND=">= dev-lang/perl-5
14 >= sys-dev/autoconf-5"
15
16 SDEPEND=">= virtual/sed"
17
18 SRCFILE="automake-${PVER}.tar.bz2"
19 SRCDIR="${BUILDDIR}/automake-${PVER}"
20
21 sminclude mtools
22
23 SRC_URI=(
24 gnu://automake/${SRCFILE}
25 mirror://automake/${SRCFILE}
26 )
27
28 UP2DATE="updatecmd \"http://ftp.gnu.org/gnu/${PNAME/[0-9]*/}?C=M;O=A\" | grep \"$( echo ${PVER:0:3} | sed 's:\.:\\.:g' )\" | lasttarball"
29
30 src_prepare()
31 {
32 munpack ${SRCFILE} || die
33 cd ${SRCDIR}
34
35 sed -i \
36 -e "/^@setfilename/s|automake|automake${PVER:0:3}|" \
37 -e "s|automake: (automake)|automake v${PVER:0:3}: (automake${PVER:0:3})|" \
38 -e "s|aclocal: (automake)|aclocal v${PVER:0:3}: (automake${PVER:0:3})|" \
39 automake.texi || die
40 }
41
42 src_compile()
43 {
44 cd ${SRCDIR}
45
46 # stupid configure script goes and run autoconf in a subdir,
47 # so 'ac-wrapper.pl' do not detect that it should use
48 # autoconf-2.5x
49 export WANT_AUTOCONF=2.5
50
51 mconfigure || die
52 mmake || die
53 }
54
55 src_install()
56 {
57 cd ${SRCDIR}
58
59 make DESTDIR=${BINDIR} install || die
60 rm -f ${BINDIR}/usr/bin/{aclocal,automake} || die
61
62 minstallinfo *.info || die
63 minstalldocs COPYING NEWS README THANKS TODO AUTHORS ChangeLog || die
64 }