diff options
author | Ben de Groot <yngwin@gentoo.org> | 2010-03-18 01:12:23 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2010-03-18 01:12:23 +0000 |
commit | df3ec8f721826c7e388809b2d7c42e29bd09a345 (patch) | |
tree | d586af5186205bf89945da77402846d4bd4be413 /dev-python | |
parent | Version bump (diff) | |
download | gentoo-2-df3ec8f721826c7e388809b2d7c42e29bd09a345.tar.gz gentoo-2-df3ec8f721826c7e388809b2d7c42e29bd09a345.tar.bz2 gentoo-2-df3ec8f721826c7e388809b2d7c42e29bd09a345.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/qscintilla-python/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/qscintilla-python/qscintilla-python-2.4.3.ebuild | 51 |
2 files changed, 58 insertions, 1 deletions
diff --git a/dev-python/qscintilla-python/ChangeLog b/dev-python/qscintilla-python/ChangeLog index 712c977b316a..e1f24f52810b 100644 --- a/dev-python/qscintilla-python/ChangeLog +++ b/dev-python/qscintilla-python/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/qscintilla-python # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.54 2010/02/28 19:45:26 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.55 2010/03/18 01:12:23 yngwin Exp $ + +*qscintilla-python-2.4.3 (18 Mar 2010) + + 18 Mar 2010; Ben de Groot <yngwin@gentoo.org> + +qscintilla-python-2.4.3.ebuild: + Version bump. 28 Feb 2010; Mark Loeser <halcy0n@gentoo.org> +qscintilla-python-2.4.1.ebuild: diff --git a/dev-python/qscintilla-python/qscintilla-python-2.4.3.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.4.3.ebuild new file mode 100644 index 000000000000..a55db0082c69 --- /dev/null +++ b/dev-python/qscintilla-python/qscintilla-python-2.4.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.4.3.ebuild,v 1.1 2010/03/18 01:12:23 yngwin Exp $ + +EAPI="2" +PYTHON_EXPORT_PHASE_FUNCTIONS="1" +SUPPORT_PYTHON_ABIS="1" + +inherit eutils python toolchain-funcs + +MY_P="QScintilla-gpl-${PV/_pre/-snapshot-}" + +DESCRIPTION="Python bindings for Qscintilla" +HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro" +SRC_URI="http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/${MY_P}.tar.gz" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="debug" + +DEPEND=">=dev-python/sip-4.10 + >=dev-python/PyQt4-4.7[X] + ~x11-libs/qscintilla-${PV}" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}/Python" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.4-nostrip.patch + + python_copy_sources +} + +src_configure() { + configuration() { + local myconf="$(PYTHON) configure.py -p 4 + --destdir=$(python_get_sitedir)/PyQt4 + $(use debug && echo '--debug')" + echo ${myconf} + ${myconf} + } + python_execute_function -s configuration +} + +src_compile() { + building() { + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" LINK="$(tc-getCXX)" + } + python_execute_function -s building +} |