Magellan Linux

Contents of /smage/branches/alx-0_6_0/core/automake/automake-4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2506 - (show annotations) (download)
Thu Jun 30 13:55:15 2011 UTC (12 years, 11 months ago) by niro
File size: 981 byte(s)
-removed STATE variable from smage files, use global distribution file for package/distribution states
1 # $Id$
2
3 PNAME="automake"
4 PVER="4"
5 PBUILD="r1"
6
7 PCATEGORIE="sys-dev"
8
9 DESCRIPTION="Wrapper for automake to utilize serveral versions."
10 HOMEPAGE="http://gentoo.org"
11
12 DEPEND=">= sys-dev/autoconf-4
13 >= sys-dev/automake14-1.4
14 >= sys-dev/automake15-1.5
15 >= sys-dev/automake16-1.6.3
16 >= sys-dev/automake17-1.7.9
17 >= sys-dev/automake18-1.8.5
18 >= sys-dev/automake19-1.9.6
19 >= sys-dev/automake110-1.10
20 >= sys-dev/automake111-1.11"
21
22 SRCFILE="am-wrapper-${PVER}.sh"
23 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
24
25 REMOVE_DEPRECATED_MAGE_TARGETS=1
26 sminclude alx
27
28 SRC_URI=( mirror://${PNAME}/${SRCFILE} )
29
30 src_install()
31 {
32 # needed directories
33 install -d ${BINDIR}/usr/bin || die
34 install -d ${BINDIR}/usr/lib/misc || die
35
36 # install wrapper
37 install -o root -g root -m0755 \
38 ${SOURCEDIR}/${PNAME}/${SRCFILE} \
39 ${BINDIR}/usr/lib/misc/am-wrapper.sh || die
40
41 # install proper symlinks
42 local i
43 for i in aclocal automake
44 do
45 ln -snf ../lib/misc/am-wrapper.sh ${BINDIR}/usr/bin/${i} || die
46 done
47 }