diff options
Diffstat (limited to 'dev-python/sip/sip-3.8-r1.ebuild')
-rw-r--r-- | dev-python/sip/sip-3.8-r1.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/sip/sip-3.8-r1.ebuild b/dev-python/sip/sip-3.8-r1.ebuild deleted file mode 100644 index 7b6377c01758..000000000000 --- a/dev-python/sip/sip-3.8-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-3.8-r1.ebuild,v 1.8 2004/07/02 04:31:05 squinky86 Exp $ - -inherit eutils distutils - -MY_P="${PN}-x11-gpl-${PV}" -DESCRIPTION="SIP is a tool for generating bindings for C++ classes so that they can be used by Python." -SRC_URI="mirror://gentoo/${MY_P}.tar.gz" -HOMEPAGE="http://www.riverbankcomputing.co.uk/sip/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc alpha" -IUSE="" - -DEPEND="virtual/libc - x11-libs/qt - >=dev-lang/python-2.2.1" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/license-${PV}.diff -} - -src_compile(){ - distutils_python_version - - chmod +x build.py - dodir /usr/bin - dodir /usr/lib/python${PYVER}/site-packages - python build.py -l qt-mt \ - -b ${D}/usr/bin \ - -d ${D}/usr/lib/python${PYVER}/site-packages \ - -e ${D}/usr/include/python${PYVER} - - emake || die -} - -src_install() { - distutils_python_version - dodir /usr/include/python${PYVER} - emake || die - einstall || die - dodoc NEWS README THANKS -} |