Magellan Linux

Annotation of /smage/trunk/core/automake/automake-4-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1453 - (hide annotations) (download)
Thu Mar 3 14:15:40 2011 UTC (13 years, 2 months ago) by niro
File size: 968 byte(s)
-rev bump for mass rebuild
1 niro 1453 # $Id: automake-4-r1.smage2 1732 2009-05-23 21:36:45Z niro $
2    
3     PNAME="automake"
4     PVER="4"
5     PBUILD="r3"
6    
7     PCATEGORIE="sys-dev"
8     STATE="unstable"
9    
10     DESCRIPTION="Wrapper for automake to utilize serveral versions."
11     HOMEPAGE="http://gentoo.org"
12    
13     DEPEND=">= sys-dev/autoconf-4
14     >= sys-dev/automake14-1.4
15     >= sys-dev/automake15-1.5
16     >= sys-dev/automake16-1.6.3
17     >= sys-dev/automake17-1.7.9
18     >= sys-dev/automake18-1.8.5
19     >= sys-dev/automake19-1.9.6
20     >= sys-dev/automake110-1.10
21     >= sys-dev/automake111-1.11"
22    
23     SRCFILE="am-wrapper-${PVER}.sh"
24     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
25    
26     sminclude mtools mcore
27    
28     SRC_URI=( mirror://${PNAME}/${SRCFILE} )
29    
30     src_install()
31     {
32     # needed directories
33     minstalldir /usr/bin || die
34     minstalldir /usr/$(mlibdir)/misc || die
35    
36     # install wrapper
37     minstallexec -s ${SRCFILE} /usr/$(mlibdir)/misc/am-wrapper.sh || die
38    
39     # install proper symlinks
40     local i
41     for i in aclocal automake
42     do
43     mlink ../$(mlibdir)/misc/am-wrapper.sh /usr/bin/${i} || die
44     done
45     }