blob: 48abe56fde2e76afe011d39e23bfcb95e4211c75 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-0.2.6.ebuild,v 1.1 2007/03/04 03:23:52 marienz Exp $
inherit distutils
DESCRIPTION="pkgcore package manager"
HOMEPAGE="http://www.pkgcore.org"
SRC_URI="http://www.pkgcore.org/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc64 ~sparc ~x86"
IUSE="doc"
DEPEND=">=dev-lang/python-2.4"
RDEPEND=">=dev-lang/python-2.4
|| ( >=dev-lang/python-2.5 dev-python/pycrypto )
>=app-shells/bash-3.0
doc? ( >=dev-python/docutils-0.4 )"
DOCS="AUTHORS NEWS"
src_unpack() {
unpack ${A}
cd "${S}"
use hppa && epatch "${FILESDIR}/${PN}-0.2-hppa-disable-filter-env.patch"
}
src_compile() {
distutils_src_compile
if use doc; then
./build_docs.py || die "doc building failed"
for f in man/*.man; do
mv "${f}" "${f/%man/1}" || die "${f} manpage rename failed"
done
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r doc dev-notes
doman man/*.1
fi
dodoc doc/*.rst man/*.rst
docinto dev-notes
dodoc dev-notes/*.rst
}
pkg_postinst() {
distutils_pkg_postinst
echo "updating pkgcore plugin cache"
pplugincache
if [[ -d "${ROOT}etc/pkgcore/plugins" ]]; then
elog "You still have an /etc/pkgcore/plugins from pkgcore 0.1."
elog "It is unused by pkgcore >= 0.2, so you can remove it now."
fi
}
src_test() {
"${python}" setup.py test || die "testing returned non zero"
}
|