blob: 58d48114523399d980633ab5cffbdd64489da21e (
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
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/tla-1.3.5.ebuild,v 1.2 2007/01/02 13:39:48 gustavoz Exp $
S="${WORKDIR}/${P}/src/=build"
DESCRIPTION="Revision control system ideal for widely distributed development"
SRC_URI="mirror://gnu/gnu-arch/${P}.tar.gz
http://dev.gentoo.org/~arj/tla.1-2.gz"
HOMEPAGE="http://savannah.gnu.org/projects/gnu-arch http://wiki.gnuarch.org/ http://arch.quackerhead.com/~lord/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc-macos sparc ~x86"
IUSE="doc"
DEPEND="sys-apps/coreutils
sys-apps/diffutils
sys-devel/patch
sys-apps/findutils
sys-apps/gawk
app-arch/tar
!ppc-macos? ( sys-apps/util-linux )
sys-apps/debianutils
sys-devel/make"
src_unpack() {
unpack ${P}.tar.gz
unpack tla.1-2.gz
mkdir "${S}"
cd "${WORKDIR}/${P}"
sed -i 's:/home/lord/{install}:/usr:g' "${WORKDIR}/${P}/src/tla/=gpg-check.awk"
}
src_compile() {
OPTIONS="--prefix=/usr --with-posix-shell=/bin/bash "
if [[ -n $CC ]]
then
../configure ${OPTIONS} --with cc="$CC $CFLAGS" || die "configure failed"
else
../configure ${OPTIONS} || die "configure failed"
fi
# parallel make may cause problems with this package
make || die "make failed"
}
src_install () {
make install prefix="${D}/usr" \
|| die "make install failed"
cd ${S}/..
dodoc COPYING
dodoc ChangeLog
if use doc; then
cd docs-tla
docinto html
dohtml -r .
cd ../docs-hackerlab
docinto hackerlab/html
dohtml html/*
docinto hackerlab/ps
dodoc ps/*
fi
cd ${WORKDIR}
mv tla.1-2 tla.1
doman tla.1
chmod 755 "${WORKDIR}/${P}/src/tla/=gpg-check.awk"
cp -pPR "${WORKDIR}/${P}/src/tla/=gpg-check.awk" "${D}/usr/bin/tla-gpg-check.awk"
}
|