From aa52dde2ea9ce9f4d4e5d48a8a35f9223e419324 Mon Sep 17 00:00:00 2001 From: Tiziano Müller Date: Sat, 23 Feb 2008 16:50:12 +0000 Subject: Made sip respect our LDFLAGS (bug #209738). Dropped old & unused versions. (Portage version: 2.1.4.4) --- dev-python/sip/sip-4.5.2-r1.ebuild | 57 -------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 dev-python/sip/sip-4.5.2-r1.ebuild (limited to 'dev-python/sip/sip-4.5.2-r1.ebuild') diff --git a/dev-python/sip/sip-4.5.2-r1.ebuild b/dev-python/sip/sip-4.5.2-r1.ebuild deleted file mode 100644 index 62ed95004412..000000000000 --- a/dev-python/sip/sip-4.5.2-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.5.2-r1.ebuild,v 1.8 2007/06/24 21:48:17 dev-zero Exp $ - -NEED_PYTHON=2.3 - -inherit python toolchain-funcs versionator multilib - -MY_P=${P/_} - -DESCRIPTION="SIP is a tool for generating bindings for C++ classes so that they can be used by Python." -HOMEPAGE="http://www.riverbankcomputing.co.uk/sip/" -SRC_URI="http://www.riverbankcomputing.com/Downloads/sip$(get_major_version)/${MY_P}.tar.gz" - -LICENSE="sip" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="debug" - -S=${WORKDIR}/${MY_P} - -DEPEND="" -RDEPEND="" - -src_compile(){ - 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="" \ - CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ - CC=$(tc-getCC) CXX=$(tc-getCXX) \ - LINK=$(tc-getCXX) LINK_SHLIB=$(tc-getCXX) \ - STRIP="/bin/true" || die "configure failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc ChangeLog NEWS README THANKS TODO doc/sipref.txt - dohtml doc/* -} - -pkg_postinst() { - python_mod_optimize -} - -pkg_postrm() { - python_mod_cleanup -} -- cgit v1.2.3-65-gdbad