Magellan Linux

Contents of /smage/trunk/core/automake/automake-4-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1760 - (show annotations) (download)
Mon Sep 19 10:02:37 2011 UTC (12 years, 7 months ago) by niro
File size: 897 byte(s)
auto added: ver bump to 4-r4
1 # $Id$
2
3 PNAME="automake"
4 PVER="4"
5 PBUILD="r4"
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 sminclude mtools mcore
26
27 SRC_URI=( mirror://${PNAME}/${SRCFILE} )
28
29 src_install()
30 {
31 # needed directories
32 minstalldir /usr/bin || die
33 minstalldir /usr/$(mlibdir)/misc || die
34
35 # install wrapper
36 minstallexec -s ${SRCFILE} /usr/$(mlibdir)/misc/am-wrapper.sh || die
37
38 # install proper symlinks
39 local i
40 for i in aclocal automake
41 do
42 mlink ../$(mlibdir)/misc/am-wrapper.sh /usr/bin/${i} || die
43 done
44 }