blob: d2868c1967e9c021055e4850739ae138f924532e (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.1.2.ebuild,v 1.8 2009/09/26 13:42:50 ranger Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils flag-o-matic
DESCRIPTION="eGenix utils for Python"
HOMEPAGE="http://www.egenix.com/products/python/mxBase"
SRC_URI="http://downloads.egenix.com/python/${P}.tar.gz"
LICENSE="eGenixPublic-1.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND=""
RESTRICT_PYTHON_ABIS="3*"
PYTHON_MODNAME="mx"
src_prepare() {
distutils_src_prepare
# doesn't play well with -fstack-protector (#63762)
rm "mx/TextTools/Examples/pytag.py"
# We do the optimization ourselves
sed -i \
-e 's/^\(optimize\) = 1/\1 = 0/' \
setup.cfg || die "sed failed"
# And we don't want the docs in site-packages
sed -i \
-e '/\/Doc\//d' \
egenix_mx_base.py || die "sed failed"
}
src_compile() {
replace-flags "-O[3s]" "-O2"
distutils_src_compile
}
src_install() {
distutils_src_install
dohtml -a html -r mx
insinto /usr/share/doc/${PF}
find "${S}" -iname "*.pdf" | xargs doins
installation_of_headers() {
dodir "$(python_get_includedir)/mx"
find "${D}$(python_get_sitedir)/mx" -type f -name "*.h" -print0 | while read -d $'\0' header; do
mv -f "${header}" "${D}$(python_get_includedir)/mx"
done
}
python_execute_function --action-message 'Installation of headers with Python ${PYTHON_ABI}' installation_of_headers
}
|