summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-09 13:56:06 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-03-09 13:56:06 +0000
commit4c01f8f5e6bdc16d37a60b02d1685af6f186f82d (patch)
tree425be4ed4ba1093a60ba4cfd8e8151c4e9d54fe3
parentRemove broken version (diff)
downloadgentoo-2-4c01f8f5e6bdc16d37a60b02d1685af6f186f82d.tar.gz
gentoo-2-4c01f8f5e6bdc16d37a60b02d1685af6f186f82d.tar.bz2
gentoo-2-4c01f8f5e6bdc16d37a60b02d1685af6f186f82d.zip
Delete older ebuild.
-rw-r--r--dev-python/pycxx/pycxx-6.2.3.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/pycxx/pycxx-6.2.3.ebuild b/dev-python/pycxx/pycxx-6.2.3.ebuild
deleted file mode 100644
index e26687b94c28..000000000000
--- a/dev-python/pycxx/pycxx-6.2.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/pycxx-6.2.3.ebuild,v 1.2 2011/03/09 13:11:43 arfrever Exp $
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="*-jython"
-
-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 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
-IUSE="doc examples"
-
-PYTHON_MODNAME="CXX"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-python-3.patch"
- epatch "${FILESDIR}/${P}-installation.patch"
- epatch "${FILESDIR}/${PN}-6.1.0-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
-}