blob: d6b2b4a0e83141070d195964e0afc98971372aa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2011 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.5.1.ebuild,v 1.3 2011/07/21 10:43:38 maekke Exp $
EAPI="3"
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
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 ~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}/${P}-disable_stripping.patch"
python_copy_sources
}
src_configure() {
configuration() {
local myconf=("$(PYTHON)"
configure.py
-p 4
--destdir="${EPREFIX}$(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
}
|