49 lines
1 KiB
Bash
49 lines
1 KiB
Bash
# Copyright 1999-2012 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.8 2012/03/29 06:53:13 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 +man"
|
|
|
|
RDEPEND=">=dev-lang/python-2.4
|
|
=dev-python/snakeoil-9999
|
|
|| ( >=dev-lang/python-2.5 dev-python/pycrypto )"
|
|
DEPEND="${RDEPEND}
|
|
doc? ( dev-python/sphinx )
|
|
man? ( dev-python/sphinx )
|
|
dev-python/pyparsing"
|
|
|
|
DOCS="AUTHORS NEWS"
|
|
|
|
pkg_setup() {
|
|
# disable snakeoil 2to3 caching...
|
|
unset PY2TO3_CACHEDIR
|
|
python_pkg_setup
|
|
}
|
|
|
|
src_compile() {
|
|
distutils_src_compile $(use_enable doc html-docs) \
|
|
$(use_enable man man-pages)
|
|
}
|
|
|
|
src_install() {
|
|
distutils_src_install $(use_enable doc html-docs) \
|
|
$(use_enable man man-pages)
|
|
}
|
|
|
|
pkg_postinst() {
|
|
distutils_pkg_postinst
|
|
pplugincache
|
|
}
|