blob: 9413b6bcfbb70babf07f016ab6b5b3bef1d127f1 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/tla-1.2-r2.ebuild,v 1.2 2004/06/02 22:39:10 kumba Exp $
inherit eutils
MY_P="${P/_/}"
S="${WORKDIR}/${MY_P}/src/=build"
DESCRIPTION="Revision control system ideal for widely distributed development"
SRC_URI="http://arch.quackerhead.com/~lord/releases/tla/${MY_P}.tar.gz"
HOMEPAGE="http://arch.quackerhead.com/~lord/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 alpha ppc hppa sparc ~amd64"
DEPEND="sys-apps/coreutils
>=net-misc/neon-0.24.6
sys-apps/diffutils
sys-devel/patch
sys-apps/findutils
sys-apps/gawk
app-arch/tar
sys-apps/util-linux
sys-apps/debianutils
sys-devel/make"
src_unpack() {
unpack "${A}"
mkdir "${MY_P}/src/=build"
# rphillips 2004-06-01
# patch to build tla with the external libneon
epatch ${FILESDIR}/tla-1.2-4.diff.gz
}
src_compile() {
sed -i 's:/home/lord/{install}:/usr:g' "${WORKDIR}/${MY_P}/src/tla/=gpg-check.awk"
../configure \
--prefix="/usr" \
--with-posix-shell="/bin/bash" || die "configure failed"
# parallel make may cause problems with this package
make || die "make failed"
}
src_install () {
make install prefix="${D}/usr" \
|| die "make install failed"
cd ${WORKDIR}/${MY_P}/src
dodoc COPYING
cd docs-tla
dodoc =README
docinto ps
dodoc ps/*.ps
docinto html
dohtml -r html/
chmod 755 "${WORKDIR}/${MY_P}/src/tla/=gpg-check.awk"
cp -a "${WORKDIR}/${MY_P}/src/tla/=gpg-check.awk" "${D}/usr/bin/tla-gpg-check.awk"
}
|