diff options
author | Ben de Groot <yngwin@gentoo.org> | 2010-03-17 23:43:01 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2010-03-17 23:43:01 +0000 |
commit | 4a4ea95bcb05b87a66c7da2fbec2589d40b2ba41 (patch) | |
tree | da466d3d823d082690a73fa180b2d1f9483e94c5 /dev-python | |
parent | www-plugins/gnash-0.8.7 compile fix and default renderer change (diff) | |
download | gentoo-2-4a4ea95bcb05b87a66c7da2fbec2589d40b2ba41.tar.gz gentoo-2-4a4ea95bcb05b87a66c7da2fbec2589d40b2ba41.tar.bz2 gentoo-2-4a4ea95bcb05b87a66c7da2fbec2589d40b2ba41.zip |
Version bump. ChangeLog is no longer shipped.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/sip/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/sip/sip-4.10.1.ebuild | 72 |
2 files changed, 78 insertions, 1 deletions
diff --git a/dev-python/sip/ChangeLog b/dev-python/sip/ChangeLog index dba02ab97e8b..e582fd66ff83 100644 --- a/dev-python/sip/ChangeLog +++ b/dev-python/sip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/sip # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.160 2010/03/01 23:52:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.161 2010/03/17 23:43:01 yngwin Exp $ + +*sip-4.10.1 (17 Mar 2010) + + 17 Mar 2010; Ben de Groot <yngwin@gentoo.org> +sip-4.10.1.ebuild: + Version bump. ChangeLog is no longer shipped. 02 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> sip-4.10.ebuild: amd64 stable wrt #301105 diff --git a/dev-python/sip/sip-4.10.1.ebuild b/dev-python/sip/sip-4.10.1.ebuild new file mode 100644 index 000000000000..91691bc0d7c1 --- /dev/null +++ b/dev-python/sip/sip-4.10.1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.10.1.ebuild,v 1.1 2010/03/17 23:43:01 yngwin Exp $ + +EAPI="2" +PYTHON_EXPORT_PHASE_FUNCTIONS="1" +SUPPORT_PYTHON_ABIS="1" + +inherit eutils python toolchain-funcs + +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 http://pypi.python.org/pypi/SIP" +SRC_URI="http://www.riverbankcomputing.com/static/Downloads/${PN}${PV%%.*}/${MY_P}.tar.gz" + +LICENSE="|| ( GPL-2 GPL-3 sip )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="debug doc" + +S="${WORKDIR}/${MY_P}" + +DEPEND="" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-4.9.3-darwin.patch + python_copy_sources +} + +src_configure() { + configuration() { + local myconf="$(PYTHON) configure.py + --bindir=${EPREFIX}/usr/bin + --destdir=${EPREFIX}$(python_get_sitedir) + --incdir=${EPREFIX}$(python_get_includedir) + --sipdir=${EPREFIX}/usr/share/sip + $(use debug && echo '--debug') + CC=$(tc-getCC) CXX=$(tc-getCXX) + LINK=$(tc-getCXX) LINK_SHLIB=$(tc-getCXX) + CFLAGS='${CFLAGS}' CXXFLAGS='${CXXFLAGS}' + LFLAGS='${LDFLAGS}' + STRIP=true" + echo ${myconf} + eval ${myconf} + } + python_execute_function -s configuration +} + +src_install() { + python_src_install + + dodoc NEWS || die + + if use doc; then + dohtml -r doc/html/* || die + fi +} + +pkg_postinst() { + python_mod_optimize sipconfig.py sipdistutils.py + + ewarn 'When updating sip, you usually need to recompile packages that' + ewarn 'depend on sip, such as PyQt4 and qscintilla-python. If you have' + ewarn 'app-portage/gentoolkit installed you can find these packages with' + ewarn '`equery d sip` and `equery d PyQt4`.' +} + +pkg_postrm() { + python_mod_cleanup sipconfig.py sipdistutils.py +} |