forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PythonQt-3.2.ebuild
85 lines (68 loc) · 1.8 KB
/
PythonQt-3.2.ebuild
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
80
81
82
83
84
85
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
MY_P=${PN}${PV}
inherit qmake-utils python-single-r1
DESCRIPTION="A dynamic Python binding for the Qt framework"
HOMEPAGE="http://pythonqt.sourceforge.net/"
SRC_URI="mirror://sourceforge/pythonqt/pythonqt/${P}/${MY_P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc +extensions webkit"
RDEPEND="${PYTHON_DEPS}
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
extensions? (
dev-qt/designer:5
dev-qt/qtdeclarative:5[widgets]
dev-qt/qtmultimedia:5[widgets]
dev-qt/qtnetwork:5
dev-qt/qtopengl:5
dev-qt/qtprintsupport:5
dev-qt/qtsql:5
dev-qt/qtsvg:5
dev-qt/qtxml:5
dev-qt/qtxmlpatterns:5
webkit? ( dev-qt/qtwebkit:5 )
)"
DEPEND="${RDEPEND}
dev-qt/qtxml:5
virtual/pkgconfig
doc? ( app-doc/doxygen )"
S="${WORKDIR}/${MY_P}"
REQUIRED_USE="webkit? ( extensions ) ${PYTHON_REQUIRED_USE}"
src_prepare() {
default
if ! use extensions ; then
sed -i '/SUBDIRS/s/extensions//' PythonQt.pro || die "sed for extensions"
fi
if ! use webkit ; then
# Remove webkit support if not used
sed -i '/qtHaveModule(webkit):CONFIG += PythonQtWebKit/d' \
extensions/PythonQt_QtAll/PythonQt_QtAll.pro \
|| die "sed for webkit"
fi
# Unset python version to use python-config
sed -i "/unix:PYTHON_VERSION=/s/2.7//" build/python.prf \
|| die "sed for python version"
}
src_configure() {
eqmake5 PREFIX="${ED%/}"/usr
}
src_install() {
einstalldocs
# Includes
insinto /usr/include/PythonQt
doins -r src/*.h
insinto /usr/include/PythonQt/gui
doins -r src/gui/*.h
if use extensions ; then
insinto /usr/include/PythonQt/extensions/PythonQt_QtAll
doins -r extensions/PythonQt_QtAll/*.h
fi
# Libraries
dolib.so lib/libPythonQt*
}