blob: a27ae6d92dfa478df40055e360768c1791f3cc8d (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit tla
DESCRIPTION="tla-tools is a package of helpful commands to use with the tla program."
HOMEPAGE="http://www.gnuarch.org/gnuarchwiki/tla-tools"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-util/tla"
RDEPEND=${DEPEND}
ETLA_VERSION="miles@gnu.org--2006/tla-tools--devo--0"
ETLA_ARCHIVES="http://mirrors.sourcecontrol.net/miles@gnu.org--2006"
src_unpack() {
tla_src_unpack
cp -r "${DISTDIR}"/tla-tools--devo--0--patch-*/* "${S}" || die
}
src_compile() {
./configure --prefix /usr || die "./configure failed"
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|