diff options
author | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-04-01 15:44:50 +0000 |
---|---|---|
committer | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-04-01 15:44:50 +0000 |
commit | d3f3387a23f4e07273b0a58a9ea043e2d60d309e (patch) | |
tree | 72c2bebefdea4e6153e16c09b252440db28021fe /sys-apps/pkgcore/pkgcore-0.2.13-r1.ebuild | |
parent | alpha stable wrt bug #165460 (diff) | |
download | gentoo-2-d3f3387a23f4e07273b0a58a9ea043e2d60d309e.tar.gz gentoo-2-d3f3387a23f4e07273b0a58a9ea043e2d60d309e.tar.bz2 gentoo-2-d3f3387a23f4e07273b0a58a9ea043e2d60d309e.zip |
Fix warnings caused by paludis written environment on vdb unmerge
(Portage version: 2.1.2.2)
Diffstat (limited to 'sys-apps/pkgcore/pkgcore-0.2.13-r1.ebuild')
-rw-r--r-- | sys-apps/pkgcore/pkgcore-0.2.13-r1.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/sys-apps/pkgcore/pkgcore-0.2.13-r1.ebuild b/sys-apps/pkgcore/pkgcore-0.2.13-r1.ebuild new file mode 100644 index 000000000000..b336a5bda7cd --- /dev/null +++ b/sys-apps/pkgcore/pkgcore-0.2.13-r1.ebuild @@ -0,0 +1,70 @@ +# 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.13-r1.ebuild,v 1.1 2007/04/01 15:44:50 masterdriverz 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" + epatch "${FILESDIR}/${P}-tweak_intercepts.patch" +} + +src_compile() { + distutils_src_compile + + if use doc; then + ./build_docs.py || die "doc building failed" + 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 + + elog "If the new layman sync support causes problems you can disable it" + elog "with FEATURES=-layman-sync. If you cannot sync a layman overlay" + elog "using pkgcore, file a bug in pkgcore.org trac instead of complaining" + elog "to the layman or overlay maintainer." +} + +src_test() { + "${python}" setup.py test || die "testing returned non zero" +} |