diff options
author | 2009-06-18 15:29:36 +0000 | |
---|---|---|
committer | 2009-06-18 15:29:36 +0000 | |
commit | 8e51f9604cfa5653094c42548631a725d5cdc6c6 (patch) | |
tree | 5e0aeab2354f8bba49c9fcc9d548f348dc846703 /dev-python/qscintilla-python/qscintilla-python-2.3.2-r2.ebuild | |
parent | Rename modprobe config file to lirc.conf (diff) | |
download | gentoo-2-8e51f9604cfa5653094c42548631a725d5cdc6c6.tar.gz gentoo-2-8e51f9604cfa5653094c42548631a725d5cdc6c6.tar.bz2 gentoo-2-8e51f9604cfa5653094c42548631a725d5cdc6c6.zip |
Apply gcc-4.4 patch. bug 273007
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/qscintilla-python/qscintilla-python-2.3.2-r2.ebuild')
-rw-r--r-- | dev-python/qscintilla-python/qscintilla-python-2.3.2-r2.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-python/qscintilla-python/qscintilla-python-2.3.2-r2.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.3.2-r2.ebuild new file mode 100644 index 000000000000..f1186175424a --- /dev/null +++ b/dev-python/qscintilla-python/qscintilla-python-2.3.2-r2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2009 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.3.2-r2.ebuild,v 1.1 2009/06/18 15:29:35 hwoarang Exp $ + +EAPI="2" + +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=] + qt4? ( >=dev-python/PyQt4-4.4 ) + !qt4? ( >=dev-python/PyQt-3.17.6 )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P}/Python + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.2-nostrip.patch + epatch "${FILESDIR}"/qscintilla-gcc44.patch +} + +src_configure() { + 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" +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + python_need_rebuild + emake DESTDIR="${D}" install || die "emake install failed" +} |