blob: 0d1e7a69780fd2701a74e776c0481994e2934004 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.12.3-r2.ebuild,v 1.2 2011/07/10 15:28:10 hwoarang Exp $
EAPI="3"
PYTHON_DEPEND="*"
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
inherit eutils python toolchain-funcs
MY_P="${P/_pre/-snapshot-}"
DESCRIPTION="Python extension module generator for C and C++ libraries"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/sip/intro http://pypi.python.org/pypi/SIP"
SRC_URI="http://www.riverbankcomputing.com/static/Downloads/${PN}${PV%%.*}/${MY_P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 sip )"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug doc"
S="${WORKDIR}/${MY_P}"
DEPEND=""
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}/${PN}-4.9.3-darwin.patch"
epatch "${FILESDIR}/${P}-python-3.2.patch"
epatch "${FILESDIR}/${P}-sip_api_is_py_method.patch"
python_copy_sources
}
src_configure() {
configuration() {
local myconf=("$(PYTHON)"
configure.py
--bindir="${EPREFIX}/usr/bin"
--incdir="${EPREFIX}$(python_get_includedir)"
--destdir="${EPREFIX}$(python_get_sitedir)"
--sipdir="${EPREFIX}/usr/share/sip"
$(use debug && echo --debug)
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
LINK="$(tc-getCXX)"
LINK_SHLIB="$(tc-getCXX)"
CFLAGS="${CFLAGS}"
CXXFLAGS="${CXXFLAGS}"
LFLAGS="${LDFLAGS}"
STRIP=":")
echo "${myconf[@]}"
"${myconf[@]}"
}
python_execute_function -s configuration
}
src_install() {
python_src_install
dodoc NEWS || die "dodoc failed"
if use doc; then
dohtml -r doc/html/* || die "dohtml failed"
fi
}
pkg_postinst() {
python_mod_optimize sipconfig.py sipdistutils.py
ewarn "When updating dev-python/sip, you usually need to rebuild packages, which depend on dev-python/sip,"
ewarn "such as dev-python/PyQt4 and dev-python/qscintilla-python. If you have app-portage/gentoolkit"
ewarn "installed, you can find these packages with \`equery d dev-python/sip dev-python/PyQt4\`."
}
pkg_postrm() {
python_mod_cleanup sipconfig.py sipdistutils.py
}
|