diff options
author | Caleb Tennis <caleb@gentoo.org> | 2006-11-14 13:00:45 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2006-11-14 13:00:45 +0000 |
commit | 52ee1a2a721f3da12ed21338fc4158f8cfeeca33 (patch) | |
tree | 81299f06f2c342778595647241b08c5e41f4ef87 /dev-python | |
parent | Stable on sparc --- Security Bug #155078 --- builds, installs, and appears to (diff) | |
download | gentoo-2-52ee1a2a721f3da12ed21338fc4158f8cfeeca33.tar.gz gentoo-2-52ee1a2a721f3da12ed21338fc4158f8cfeeca33.tar.bz2 gentoo-2-52ee1a2a721f3da12ed21338fc4158f8cfeeca33.zip |
version bump
(Portage version: 2.1.2_rc1-r1)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/sip/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/sip/files/digest-sip-4.5 | 3 | ||||
-rw-r--r-- | dev-python/sip/sip-4.5.ebuild | 39 |
3 files changed, 48 insertions, 1 deletions
diff --git a/dev-python/sip/ChangeLog b/dev-python/sip/ChangeLog index e4bfd8a2c35d..80b0e61654f7 100644 --- a/dev-python/sip/ChangeLog +++ b/dev-python/sip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/sip # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.82 2006/10/22 15:10:32 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.83 2006/11/14 13:00:45 caleb Exp $ + +*sip-4.5 (14 Nov 2006) + + 14 Nov 2006; Caleb Tennis <caleb@gentoo.org> +sip-4.5.ebuild: + version bump *sip-4.2.1-r1 (22 Oct 2006) diff --git a/dev-python/sip/files/digest-sip-4.5 b/dev-python/sip/files/digest-sip-4.5 new file mode 100644 index 000000000000..ccad25528bf1 --- /dev/null +++ b/dev-python/sip/files/digest-sip-4.5 @@ -0,0 +1,3 @@ +MD5 8171a370e15b2bf7ed3a1b579c0e9ae1 sip-4.5.tar.gz 415763 +RMD160 5db05e918ba905e8b3a326e2902de71c757bd916 sip-4.5.tar.gz 415763 +SHA256 61c305b8ebd2eb30fedc53d8115fc377b07cdec6efa24912086cd0b24a8af1fd sip-4.5.tar.gz 415763 diff --git a/dev-python/sip/sip-4.5.ebuild b/dev-python/sip/sip-4.5.ebuild new file mode 100644 index 000000000000..fc3063006027 --- /dev/null +++ b/dev-python/sip/sip-4.5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.5.ebuild,v 1.1 2006/11/14 13:00:45 caleb Exp $ + +inherit distutils + +MY_P=${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.riverbankcomputing.com/Downloads/sip4/${MY_P}.tar.gz" +#SRC_URI="http://www.riverbankcomputing.com/Downloads/Snapshots/sip4//${MY_P}.tar.gz" + +SLOT="0" +LICENSE="sip" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug doc" + +DEPEND="virtual/libc + x11-libs/qt + >=dev-lang/python-2.3" + +src_compile(){ + distutils_python_version + + local myconf="-b ${ROOT}/usr/bin -d ${ROOT}/usr/$(get_libdir)/python${PYVER}/site-packages -e ${ROOT}/usr/include/python${PYVER} -v ${ROOT}/usr/share/sip" + 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 +} |