Magellan Linux

Annotation of /branches/magellan-next/core/automake111/automake111-1.11.1-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7356 - (hide annotations) (download)
Tue Jan 11 17:02:46 2011 UTC (13 years, 4 months ago) by niro
File size: 1477 byte(s)
auto added: ver bump to 1.11.1-r2
1 niro 7356 # $Id$
2    
3     PNAME="automake111"
4     PVER="1.11.1"
5     PBUILD="r2"
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=">= sys-apps/sed-4"
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     mirror://automake/automake-1.11-infopage-namechange.patch
27     )
28    
29     UP2DATE="updatecmd \"http://ftp.gnu.org/gnu/${PNAME/[0-9]*/}?C=M;O=A\" | grep \"$( echo ${PVER%.*} | sed 's:\.:\\.:g' )\" | lasttarball"
30    
31     src_prepare()
32     {
33     munpack ${SRCFILE} || die
34     cd ${SRCDIR}
35    
36     mpatch automake-1.11-infopage-namechange.patch || die
37    
38     sed -i \
39     -e "/^@setfilename/s|automake|automake${PVER:0:3}|" \
40     -e "s|automake: (automake)|automake v${PVER:0:3}: (automake${PVER:0:3})|" \
41     -e "s|aclocal: (automake)|aclocal v${PVER:0:3}: (automake${PVER:0:3})|" \
42     doc/automake.texi || die
43     }
44    
45     src_compile()
46     {
47     cd ${SRCDIR}
48    
49     # stupid configure script goes and run autoconf in a subdir,
50     # so 'ac-wrapper.pl' do not detect that it should use
51     # autoconf-2.5x
52     export WANT_AUTOCONF=2.5
53    
54     mconfigure || die
55     mmake || die
56     }
57    
58     src_install()
59     {
60     cd ${SRCDIR}
61    
62     make DESTDIR=${BINDIR} install || die
63     rm -f ${BINDIR}/usr/bin/{aclocal,automake} || die
64    
65     minstallinfo doc/*.info || die
66     minstalldocs COPYING NEWS README THANKS TODO AUTHORS ChangeLog || die
67     }