diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-12-20 14:10:17 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-12-20 14:10:17 +0000 |
commit | ae245b7544a19c6a6ba63dd89a5dedae453aae3e (patch) | |
tree | 7891d64abf0f6acea4cf0d07c017d9c3b4e2b995 /dev-python/pyx/pyx-0.7.1.ebuild | |
parent | hppa KEYWORDS #61277 (Manifest recommit) (diff) | |
download | gentoo-2-ae245b7544a19c6a6ba63dd89a5dedae453aae3e.tar.gz gentoo-2-ae245b7544a19c6a6ba63dd89a5dedae453aae3e.tar.bz2 gentoo-2-ae245b7544a19c6a6ba63dd89a5dedae453aae3e.zip |
Remove old ebuilds and bump version, new ebuild by Fernando Serboncini <fserb@terra.com.br>.
Diffstat (limited to 'dev-python/pyx/pyx-0.7.1.ebuild')
-rw-r--r-- | dev-python/pyx/pyx-0.7.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/pyx/pyx-0.7.1.ebuild b/dev-python/pyx/pyx-0.7.1.ebuild new file mode 100644 index 000000000000..34263f61db7d --- /dev/null +++ b/dev-python/pyx/pyx-0.7.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/pyx-0.7.1.ebuild,v 1.1 2004/12/20 14:10:17 kloeri Exp $ + +inherit distutils + +MY_P=${P/pyx/PyX} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Python package for the generation of encapsulated PostScript figures" +SRC_URI="mirror://sourceforge/pyx/${MY_P}.tar.gz" +HOMEPAGE="http://pyx.sourceforge.net/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="doc" +DEPEND="virtual/python + virtual/tetex" + +DOCS="AUTHORS CHANGES INSTALL" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-0.7.1.patch +} + +src_compile() { + distutils_src_compile + + if use doc; then + cd ${S}/faq + make pdf + fi +} + +src_install() { + distutils_src_install + + if use doc; then + # The manual is not currently done because it needs mkhowto + # that's not currently available on our python ebuild + insinto /usr/share/doc/${P}/ + doins faq/pyxfaq.pdf + fi +} |