diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-04-05 14:51:48 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-04-05 14:51:48 +0000 |
commit | 4958748929e80b1cd4a2c39b7db0984ba45b1e92 (patch) | |
tree | 4f76dd894089287f85f0f253e127fe209f11817f /dev-python/buildutils/buildutils-0.3.ebuild | |
parent | Version bump for both stable and beta branches. (diff) | |
download | gentoo-2-4958748929e80b1cd4a2c39b7db0984ba45b1e92.tar.gz gentoo-2-4958748929e80b1cd4a2c39b7db0984ba45b1e92.tar.bz2 gentoo-2-4958748929e80b1cd4a2c39b7db0984ba45b1e92.zip |
Version bump. Dropped old version and removed useless test use flag.
(Portage version: 2.1.5_rc1)
Diffstat (limited to 'dev-python/buildutils/buildutils-0.3.ebuild')
-rw-r--r-- | dev-python/buildutils/buildutils-0.3.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/buildutils/buildutils-0.3.ebuild b/dev-python/buildutils/buildutils-0.3.ebuild new file mode 100644 index 000000000000..5d6155407c95 --- /dev/null +++ b/dev-python/buildutils/buildutils-0.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.1 2008/04/05 14:51:48 hawking Exp $ + +NEED_PYTHON=2.4 + +inherit distutils eutils + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="Extensions for developing Python libraries and applications." +HOMEPAGE="http://buildutils.lesscode.org/" +SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +IUSE="doc" + +DEPEND="dev-python/setuptools + doc? ( dev-python/pudge )" +RDEPEND="" + +src_unpack() { + distutils_src_unpack + + # pudge command is disabled by default, enable it. + epatch "${FILESDIR}"/${P}-pudge_addcommand.patch +} + +src_compile() { + distutils_src_compile + if use doc ; then + einfo "Generating docs as requested..." + "${python}" setup.py pudge || die "generating docs failed" + fi +} + +src_install() { + distutils_src_install + use doc && dohtml -r doc/html/* +} |