diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2013-02-27 15:37:43 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2013-02-27 15:37:43 +0000 |
commit | d2aa2f4b8242aa2294912e8e1bd4872f8fa4b70a (patch) | |
tree | fc5d3e7c9e8b1b6d9d2f1a1a5750195320e3ecef /dev-python/pyx | |
parent | Version bump. (diff) | |
download | gentoo-2-d2aa2f4b8242aa2294912e8e1bd4872f8fa4b70a.tar.gz gentoo-2-d2aa2f4b8242aa2294912e8e1bd4872f8fa4b70a.tar.bz2 gentoo-2-d2aa2f4b8242aa2294912e8e1bd4872f8fa4b70a.zip |
Drop old
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 895192F9)
Diffstat (limited to 'dev-python/pyx')
-rw-r--r-- | dev-python/pyx/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/pyx/pyx-0.10-r1.ebuild | 61 |
2 files changed, 4 insertions, 62 deletions
diff --git a/dev-python/pyx/ChangeLog b/dev-python/pyx/ChangeLog index 0c751de39aec..690d93488a7f 100644 --- a/dev-python/pyx/ChangeLog +++ b/dev-python/pyx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/pyx # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.35 2013/02/27 13:46:08 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.36 2013/02/27 15:37:43 xarthisius Exp $ + + 27 Feb 2013; Kacper Kowalik <xarthisius@gentoo.org> -pyx-0.10-r1.ebuild: + Drop old 27 Feb 2013; Agostino Sarubbo <ago@gentoo.org> pyx-0.12.1-r1.ebuild: Stable for x86, wrt bug #459434 diff --git a/dev-python/pyx/pyx-0.10-r1.ebuild b/dev-python/pyx/pyx-0.10-r1.ebuild deleted file mode 100644 index 7d34dc9ae653..000000000000 --- a/dev-python/pyx/pyx-0.10-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/pyx-0.10-r1.ebuild,v 1.6 2013/02/27 06:39:16 xarthisius Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" - -inherit distutils eutils - -MY_P="${P/pyx/PyX}" - -DESCRIPTION="Python package for the generation of encapsulated PostScript figures" -HOMEPAGE="http://pyx.sourceforge.net/" -SRC_URI="mirror://sourceforge/pyx/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 x86" -IUSE="doc" - -RDEPEND="virtual/tex-base" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base )" - -S="${WORKDIR}/${MY_P}" - -DOCS="AUTHORS CHANGES INSTALL" - -src_prepare() { - distutils_src_prepare - - epatch "${FILESDIR}"/${P}.patch - sed -i \ - -e 's/^build_t1code=.*/build_t1code=1/' \ - -e 's/^build_pykpathsea=.*/build_pykpathsea=1/' \ - setup.cfg || die "setup.cfg fix failed" - - sed -i -e 's/^texipc =.*/texipc = 1/' pyxrc || die -} - -src_compile() { - distutils_src_compile - - if use doc; then - cd "${S}/faq" - VARTEXFONTS="${T}"/fonts 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 -} |