You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.3 KiB

# Copyright 1999-2012 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.7.ebuild,v 1.1 2012/12/10 12:27:54 pesa Exp $
EAPI=4
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython *-pypy-*"
inherit eutils python toolchain-funcs
MY_P=QScintilla-gpl-${PV}
DESCRIPTION="Python bindings for Qscintilla"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
DEPEND="
>=dev-python/sip-4.12
>=dev-python/PyQt4-4.8[X]
~x11-libs/qscintilla-${PV}
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}/Python
src_prepare() {
epatch "${FILESDIR}/${PN}-2.5.1-disable_stripping.patch"
python_src_prepare
}
src_configure() {
configuration() {
local myconf=(
"$(PYTHON)" configure.py
--destdir="${EPREFIX}$(python_get_sitedir)/PyQt4"
-p 4
--no-timestamp
$(use debug && echo --debug)
)
echo "${myconf[@]}"
"${myconf[@]}" || die
}
python_execute_function -s configuration
}
src_compile() {
building() {
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" LINK="$(tc-getCXX)"
}
python_execute_function -s building
}