From ae245b7544a19c6a6ba63dd89a5dedae453aae3e Mon Sep 17 00:00:00 2001 From: Bryan Østergaard Date: Mon, 20 Dec 2004 14:10:17 +0000 Subject: Remove old ebuilds and bump version, new ebuild by Fernando Serboncini . --- dev-python/pyx/pyx-0.7.1.ebuild | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 dev-python/pyx/pyx-0.7.1.ebuild (limited to 'dev-python/pyx/pyx-0.7.1.ebuild') 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 +} -- cgit v1.2.3-65-gdbad