diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-01-21 21:14:04 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-01-21 21:14:04 +0000 |
commit | e2812c6de6029aff1abcda287df3bbefff50ea94 (patch) | |
tree | 9bc8cebd659ef5167b79be59bd21f9d0c3f878ab /dev-python/qscintilla-python | |
parent | Apply same fix for src/sql bug to older versions. (diff) | |
download | gentoo-2-e2812c6de6029aff1abcda287df3bbefff50ea94.tar.gz gentoo-2-e2812c6de6029aff1abcda287df3bbefff50ea94.tar.bz2 gentoo-2-e2812c6de6029aff1abcda287df3bbefff50ea94.zip |
Version bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/qscintilla-python')
-rw-r--r-- | dev-python/qscintilla-python/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/qscintilla-python/qscintilla-python-2.4.2.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-python/qscintilla-python/ChangeLog b/dev-python/qscintilla-python/ChangeLog index 013247456bef..89710d5b4905 100644 --- a/dev-python/qscintilla-python/ChangeLog +++ b/dev-python/qscintilla-python/ChangeLog @@ -1,6 +1,11 @@ # 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.51 2010/01/15 20:18:37 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.52 2010/01/21 21:14:04 hwoarang Exp $ + +*qscintilla-python-2.4.2 (21 Jan 2010) + + 21 Jan 2010; <hwoarang@gentoo.org> +qscintilla-python-2.4.2.ebuild: + Version bump 15 Jan 2010; Markos Chandras <hwoarang@gentoo.org> qscintilla-python-2.4.1.ebuild: diff --git a/dev-python/qscintilla-python/qscintilla-python-2.4.2.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.4.2.ebuild new file mode 100644 index 000000000000..2af2c3c81cbc --- /dev/null +++ b/dev-python/qscintilla-python/qscintilla-python-2.4.2.ebuild @@ -0,0 +1,54 @@ +# 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.2.ebuild,v 1.1 2010/01/21 21:14:04 hwoarang Exp $ + +EAPI="2" +PYTHON_DEFINE_DEFAULT_FUNCTIONS="1" +SUPPORT_PYTHON_ABIS="1" + +inherit eutils multilib 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 + --destdir=$(python_get_sitedir)/PyQt4 + -n /usr/include + -o /usr/$(get_libdir) + -p 4 + $(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 +} |