diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2005-02-20 16:01:58 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2005-02-20 16:01:58 +0000 |
commit | da96bfa3fae8696d66c6c94498a574b5d44fea04 (patch) | |
tree | 7e623762a304404020d48bb5614ae9f13b1541ce /dev-python/sip/sip-4.2.ebuild | |
parent | correcting versioning and bump (diff) | |
download | gentoo-2-da96bfa3fae8696d66c6c94498a574b5d44fea04.tar.gz gentoo-2-da96bfa3fae8696d66c6c94498a574b5d44fea04.tar.bz2 gentoo-2-da96bfa3fae8696d66c6c94498a574b5d44fea04.zip |
version bump
(Portage version: 2.0.51-r15)
Diffstat (limited to 'dev-python/sip/sip-4.2.ebuild')
-rw-r--r-- | dev-python/sip/sip-4.2.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/sip/sip-4.2.ebuild b/dev-python/sip/sip-4.2.ebuild new file mode 100644 index 000000000000..3cfb23e1d947 --- /dev/null +++ b/dev-python/sip/sip-4.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.2.ebuild,v 1.1 2005/02/20 16:01:58 carlo Exp $ + +inherit distutils + +MY_P=${P/"?.?.?_pre"/"snapshot-"} +MY_P=${MY_P/_/} +S=${WORKDIR}/${MY_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="mirror://gentoo/${MY_P}.tar.gz" +#SRC_URI="http://www.river-bank.demon.co.uk/download/sip/${MY_P}.tar.gz" +#SRC_URI="http://www.river-bank.demon.co.uk/download/snapshots/sip/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64 ~ppc64" +IUSE="debug doc" + +DEPEND="virtual/libc + x11-libs/qt + >=dev-lang/python-2.3" + +src_compile(){ + distutils_python_version + + local myconf="-l qt-mt -b /usr/bin -d /usr/$(get_libdir)/python${PYVER}/site-packages -e /usr/include/python${PYVER}" + use debug && myconf="${myconf} -u" + + python configure.py ${myconf} "CFLAGS+=${CFLAGS}" "CXXFLAGS+=${CXXFLAGS}" + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die "install failed" + dodoc ChangeLog LICENSE NEWS README THANKS TODO + if use doc ; then dohtml doc/* ; fi +} + +pkg_postinst() { + echo "" + einfo "Please note, that you have to emerge PyQt again, when upgrading from sip-3.x." + echo "" +} |