blob: 0bae0f676752b7c3f4d06203dde820b92ad6d3d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake-wrapper/automake-wrapper-1-r1.ebuild,v 1.3 2005/03/13 04:39:57 vapier Exp $
DESCRIPTION="wrapper for automake to manage multiple automake versions"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~ppc-macos"
IUSE=""
RDEPEND="=sys-devel/automake-1.4*
=sys-devel/automake-1.5*
=sys-devel/automake-1.6*
=sys-devel/automake-1.7*
=sys-devel/automake-1.8.5-r3
=sys-devel/automake-1.9*"
S=${WORKDIR}
src_install() {
exeinto /usr/lib/misc
newexe ${FILESDIR}/am-wrapper-${PV}.sh am-wrapper.sh || die
keepdir /usr/share/aclocal
dodir /usr/bin
local x=
for x in aclocal automake ; do
dosym ../lib/misc/am-wrapper.sh /usr/bin/${x}
done
}
|