summaryrefslogtreecommitdiff
path: root/dev-python/sip
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/sip')
-rw-r--r--dev-python/sip/ChangeLog9
-rw-r--r--dev-python/sip/Manifest3
-rw-r--r--dev-python/sip/sip-4.8_pre20090430.ebuild58
3 files changed, 0 insertions, 70 deletions
diff --git a/dev-python/sip/ChangeLog b/dev-python/sip/ChangeLog
deleted file mode 100644
index af34c4e0cac..00000000000
--- a/dev-python/sip/ChangeLog
+++ /dev/null
@@ -1,9 +0,0 @@
-# ChangeLog for dev-python/sip
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*sip-4.8_pre20090430 (13 May 2009)
-
- 13 May 2009; Ben de Groot <yngwin@gentoo.org> +sip-4.8_pre20090430.ebuild:
- New snapshot
-
diff --git a/dev-python/sip/Manifest b/dev-python/sip/Manifest
deleted file mode 100644
index 7c0837059de..00000000000
--- a/dev-python/sip/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST sip-4.8-snapshot-20090430.tar.gz 485201 RMD160 3c2566e752524b3e0390ede233bcc277fd2901db SHA1 e2b6de0df53625759bc02b2c7dad2192a46a645a SHA256 bb1b7c7a453e085fbaf0030d57935513cde27ed12e15b1ccc6ca967db5ce3ce1
-EBUILD sip-4.8_pre20090430.ebuild 1444 RMD160 222ddc80e03304520cf4ddb5e405c4f289f87e4c SHA1 bfa778a25e82bdd4187f42a05c45247cc2d11d89 SHA256 9ef9f041c9cdac0e0f24561e0ed7039c35d1988c93b2f3291b1815505f1e1c1d
-MISC ChangeLog 244 RMD160 d7a7837b1d931ec5ed4d4cde869e00abb7a7e2f1 SHA1 4b134dae7bc37286a555437203619a1076d09dab SHA256 b8915874dd39766b1fca37601fa7063e9ea79323e48f583ce1c8a0aa77033d23
diff --git a/dev-python/sip/sip-4.8_pre20090430.ebuild b/dev-python/sip/sip-4.8_pre20090430.ebuild
deleted file mode 100644
index a313d4bfd19..00000000000
--- a/dev-python/sip/sip-4.8_pre20090430.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-NEED_PYTHON=2.3
-inherit python toolchain-funcs versionator multilib
-
-MY_P=${P/_pre/-snapshot-}
-
-DESCRIPTION="A tool for generating bindings for C++ classes so that they can be used by Python"
-HOMEPAGE="http://www.riverbankcomputing.co.uk/software/sip/intro"
-SRC_URI="http://www.riverbankcomputing.com/static/Downloads/sip$(get_major_version)/${MY_P}.tar.gz"
-
-LICENSE="sip"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="debug"
-
-S=${WORKDIR}/${MY_P}
-
-DEPEND=""
-RDEPEND=""
-
-src_configure(){
- python_version
-
- local myconf
- use debug && myconf="${myconf} -u"
-
- "${python}" configure.py \
- -b "/usr/bin" \
- -d "/usr/$(get_libdir)/python${PYVER}/site-packages" \
- -e "/usr/include/python${PYVER}" \
- -v "/usr/share/sip" \
- ${myconf} \
- CXXFLAGS_RELEASE="" CFLAGS_RELEASE="" LFLAGS_RELEASE="" \
- CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LFLAGS="${LDFLAGS}" \
- CC=$(tc-getCC) CXX=$(tc-getCXX) \
- LINK=$(tc-getCXX) LINK_SHLIB=$(tc-getCXX) \
- STRIP="true" || die "configure failed"
-}
-
-src_install() {
- python_need_rebuild
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog NEWS README TODO doc/sipref.txt
- dohtml doc/*
-}
-
-pkg_postinst() {
- python_version
- python_mod_compile "$(python_get_sitedir)"/sip*.py
-}
-
-pkg_postrm() {
- python_mod_cleanup
-}