diff options
author | Alastair Tse <liquidx@gentoo.org> | 2005-11-03 21:05:35 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2005-11-03 21:05:35 +0000 |
commit | 68c761ab58778419c6f539bcf4979832c0bf9be8 (patch) | |
tree | 94c481076325d7066e92caace67546b5ddbd1062 /dev-python/pyx/pyx-0.8.1.ebuild | |
parent | removed gtk2 useflag (diff) | |
download | gentoo-2-68c761ab58778419c6f539bcf4979832c0bf9be8.tar.gz gentoo-2-68c761ab58778419c6f539bcf4979832c0bf9be8.tar.bz2 gentoo-2-68c761ab58778419c6f539bcf4979832c0bf9be8.zip |
version bump (#103036)
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'dev-python/pyx/pyx-0.8.1.ebuild')
-rw-r--r-- | dev-python/pyx/pyx-0.8.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/pyx/pyx-0.8.1.ebuild b/dev-python/pyx/pyx-0.8.1.ebuild new file mode 100644 index 000000000000..b2b471cbb964 --- /dev/null +++ b/dev-python/pyx/pyx-0.8.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/pyx-0.8.1.ebuild,v 1.1 2005/11/03 21:05:35 liquidx 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 ~amd64" +IUSE="doc" +DEPEND="virtual/python + virtual/tetex" + +DOCS="AUTHORS CHANGES INSTALL" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-0.8.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 +} |