blob: b59fe6a5d0e11cbc833445bc870d31ebd5562661 (
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
80
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pykde/pykde-3.7.4-r1.ebuild,v 1.1 2003/10/02 16:00:48 caleb Exp $
inherit eutils distutils
MAJ_PV=${PV%.[0-9]*}
MIN_PV=${PV##*[0-9].}
MY_PN="PyKDE"
MY_P=${MY_PN}-${MAJ_PV}-${MIN_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="set of Python bindings for the KDE libs"
SRC_URI="http://www.river-bank.demon.co.uk/download/PyKDE2/${MY_P}.tar.gz"
HOMEPAGE="http://www.riverbankcomputing.co.uk/pykde/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="virtual/glibc
sys-devel/libtool
>=dev-lang/python-2.2.1
>=dev-python/sip-3.6
>=dev-python/PyQt-3.6
>=kde-base/kdelibs-3.0.4"
src_unpack() {
unpack ${A}
cd ${S}
# bug #27401 and 27619
distutils_python_version
if [ "${PYVER}" = "2.3" ]; then
if [ "${KDEDIR}" = "/usr/kde/3" ]; then
mv ${S}/sip/global.sip ${S}/sip/global.sip22
mv ${S}/sip/global.sip23 ${S}/sip/global/sip
else
mv ${S}/sip/kzip.sip ${S}/sip/kzip.sip22
mv ${S}/sip/kzip.sip23 ${S}/sip/kzip.sip
fi
fi
PYQTVER="$(pyuic -version 2>&1 )"
PYQTVER="${PYQTVER#Python User Interface Compiler }"
PYQTVER="${PYQTVER% for Qt version *}"
PYQTVER_MAJOR=${PYQTVER/.*/}
PYQTVER_MINOR=${PYQTVER#${PYQTVER_MAJOR}.}
PYQTVER_MINOR=${PYQTVER_MINOR/.*}
if [ "${PYQTVER_MAJOR}.${PYQTVER_MINOR}" = "3.8" ]; then
local x="${S}/build.py"
echo PyQt 3.8 detected.
echo Running sed on $x
cp $x ${x}.orig
sed -e 's/Release = "3.7"/Release = "3.8"/' ${x}.orig >${x}
rm ${x}.orig
fi
}
src_compile() {
dodir /usr/lib/python${PYVER}/site-packages
dodir /usr/include/python${PYVER}
python build.py \
-d ${D}/usr/lib/python${PYVER}/site-packages \
-s /usr/lib/python${PYVER}/site-packages \
-o ${KDEDIR}/lib \
-c+ -l qt-mt -v /usr/share/sip/qt || die
make || die
}
src_install() {
distutils_python_version
dodir ${D}/usr/lib/python${PYVER}/site-packages
make DESTDIR=${D} install || die
dodoc ChangeLog AUTHORS THANKS README NEWS COPYING DETAILS BUGS README.importTest
dodir /usr/share/doc/${PF}/
mv ${D}/usr/share/doc/* ${D}/usr/share/doc/${PF}/
}
|