blob: 457779a5261205768e4cc2e94442b0e216e7961c (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/arch/arch-1.0_pre17.ebuild,v 1.4 2003/11/14 11:43:40 seemant Exp $
MY_P="${P//_/}"
S="${WORKDIR}/${MY_P}/src/=build"
DESCRIPTION="revision control system ideal for widely distributed development"
SRC_URI="http://regexps.srparish.net/src/arch/${MY_P}.tar.gz"
HOMEPAGE="http://regexps.srparish.net/www/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~alpha ~ppc ~mips ~hppa ~sparc arm"
DEPEND="sys-apps/diffutils
sys-apps/findutils
sys-apps/gawk
app-arch/tar
sys-apps/util-linux
sys-apps/debianutils
sys-devel/make
sys-devel/patch"
src_unpack() {
local t
unpack "${A}"
mkdir -p "${MY_P}/src/=build"
# patch arch to install its scripts in /usr/share/arch
# instead of /usr/libexec/arch (there is only shareables scripts).
t="${MY_P}/src/build-tools/Makefiles/rules.mk"
cp ${t} ${t}.orig
sed 's:/libexec:/share:g' ${t}.orig > ${t} || die "Patch failed for $t"
}
src_compile() {
../configure \
--prefix="/usr" \
--with-posix-shell="/bin/bash" \
--with-sendmail="/usr/sbin/sendmail" || die "configure failed"
# parallel make may cause problems with this package
make || die "make failed"
}
src_install () {
local name
make install prefix="${D}/usr" \
|| die "make install failed"
for name in ${D}/usr/share/arch/arch/*; do
name="`readlink ${name} | sed 's:^.*/usr/share/arch/::'`"
if [ "${name}" ]; then
ln -sf "../${name}" "${D}/usr/share/arch/arch/${name#*/}"
assert "Fixing symlink for ${name} failed"
fi
done
# get some docs
cd ${WORKDIR}/${MY_P}
dodoc =NEWS =README COPYING
dohtml -r docs
}
pkg_postinst() {
echo "Tom Lord's 'arch' command has been renamed upstream to 'larch'"
echo "to stop collision with 'arch' command."
}
|