You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/pkgcore/pkgcore-9999.ebuild

55 lines
1.1 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.5 2011/12/02 08:50:07 ferringb Exp $
EAPI="3"
DISTUTILS_SRC_TEST="setup.py"
EGIT_REPO_URI="https://code.google.com/p/pkgcore/"
inherit distutils git-2
DESCRIPTION="pkgcore package manager"
HOMEPAGE="http://pkgcore.googlecode.com/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="doc"
RDEPEND=">=dev-lang/python-2.4
>=dev-python/snakeoil-0.4.1
|| ( >=dev-lang/python-2.5 dev-python/pycrypto )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/docutils-0.4 dev-python/pyparsing )"
DOCS="AUTHORS NEWS"
pkg_setup() {
# disable snakeoil 2to3 caching...
unset PY2TO3_CACHEDIR
python_pkg_setup
}
src_compile() {
distutils_src_compile
if use doc; then
python setup.py build_docs || die "doc generation failed"
python setup.py build_man || die "man generation failed"
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r build/sphinx/html/*
fi
}
pkg_postinst() {
distutils_pkg_postinst
pplugincache
}