diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-05-24 22:44:27 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-05-24 22:44:27 +0000 |
commit | 1158853092d18f31ffb32411e2c300393d6c17af (patch) | |
tree | 407e557895e15437c1c2e6913f3c58ddb9e1152d /dev-python/qscintilla-python | |
parent | Version bump (diff) | |
download | gentoo-2-1158853092d18f31ffb32411e2c300393d6c17af.tar.gz gentoo-2-1158853092d18f31ffb32411e2c300393d6c17af.tar.bz2 gentoo-2-1158853092d18f31ffb32411e2c300393d6c17af.zip |
Version bump
(Portage version: 2.1.5.2)
Diffstat (limited to 'dev-python/qscintilla-python')
-rw-r--r-- | dev-python/qscintilla-python/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/qscintilla-python/qscintilla-python-2.2.ebuild | 64 |
2 files changed, 71 insertions, 1 deletions
diff --git a/dev-python/qscintilla-python/ChangeLog b/dev-python/qscintilla-python/ChangeLog index 0814d66795b4..d12798a0a8ae 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-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.7 2008/05/12 15:13:31 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.8 2008/05/24 22:44:27 yngwin Exp $ + +*qscintilla-python-2.2 (24 May 2008) + + 24 May 2008; Ben de Groot <yngwin@gentoo.org> + +qscintilla-python-2.2.ebuild: + Version bump. Updated homepage URL. 12 May 2008; Markus Rothe <corsair@gentoo.org> qscintilla-python-2.1.ebuild: diff --git a/dev-python/qscintilla-python/qscintilla-python-2.2.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.2.ebuild new file mode 100644 index 000000000000..f98143ef03fc --- /dev/null +++ b/dev-python/qscintilla-python/qscintilla-python-2.2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2008 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.2.ebuild,v 1.1 2008/05/24 22:44:27 yngwin Exp $ + +inherit eutils python + +MY_PN="qscintilla" +MY_P="${MY_PN/qs/QS}-gpl-${PV}" + +DESCRIPTION="Python bindings for Qscintilla" +HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro" +SRC_URI="http://www.riverbankcomputing.com/static/Downloads/QScintilla2/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="qt4" + +DEPEND=">=dev-python/sip-4.4 + =x11-libs/qscintilla-${PV}* + qt4? ( dev-python/PyQt4 ) + !qt4? ( dev-python/PyQt )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P}/Python + +pkg_setup() { + # this package needs to have same qt flags with qscintilla. + if use qt4; then + if ! built_with_use 'x11-libs/qscintilla' 'qt4'; then + eerror "Please build qscintilla with qt4 useflag." + die "qscintilla built without qt4." + fi + else + if built_with_use 'x11-libs/qscintilla' 'qt4'; then + eerror "Please build qscintilla without qt4 useflag." + die "qscintilla built with qt4" + fi + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${P}-nostrip.patch +} + +src_compile() { + local myconf="-o /usr/lib -n /usr/include" + if use qt4; then + myconf="${myconf} -p 4" + else + myconf="${myconf} -p 3" + fi + + python_version + ${python} configure.py ${myconf} || die "configure.py failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |