summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-11-28 17:39:09 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-11-28 17:39:09 +0000
commita7678d1d02f18b0d01ce7ac0979e447358dd07cc (patch)
tree910e2f86a0b66ac821392cc20841ad6e95bcf031 /dev-python
parentold (diff)
downloadhistorical-a7678d1d02f18b0d01ce7ac0979e447358dd07cc.tar.gz
historical-a7678d1d02f18b0d01ce7ac0979e447358dd07cc.tar.bz2
historical-a7678d1d02f18b0d01ce7ac0979e447358dd07cc.zip
Delete older ebuild.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pycxx/pycxx-6.1.0.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/pycxx/pycxx-6.1.0.ebuild b/dev-python/pycxx/pycxx-6.1.0.ebuild
deleted file mode 100644
index 126d3c505611..000000000000
--- a/dev-python/pycxx/pycxx-6.1.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/pycxx-6.1.0.ebuild,v 1.6 2009/11/08 19:58:21 nixnut Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit eutils distutils
-
-DESCRIPTION="Set of facilities to extend Python with C++"
-HOMEPAGE="http://cxx.sourceforge.net"
-SRC_URI="mirror://sourceforge/cxx/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="doc examples"
-
-PYTHON_MODNAME="CXX"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-setup.py.patch"
- epatch "${FILESDIR}/${P}-python-3.patch"
- epatch "${FILESDIR}/${P}-C_compatible_headers.patch"
-
- sed -e "/^#include/s:/Python[23]/:/:" -i CXX/*/*.hxx || die "sed failed"
-}
-
-src_install() {
- distutils_src_install
- if use doc; then
- dohtml -r Doc/ || die "dohtml failed"
- fi
-
- if use examples; then
- docinto examples/python-2
- dodoc Demo/Python2/* || die "dodoc failed"
- docinto examples/python-3
- dodoc Demo/Python3/* || die "dodoc failed"
- fi
-}