blob: 0eb8a5b69eb832a71c26a1729fcb2b0ee3c84286 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pykde/pykde-3.11.3.ebuild,v 1.6 2007/06/24 20:29:31 dev-zero Exp $
inherit eutils distutils
MY_P=PyKDE-${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"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
HOMEPAGE="http://www.riverbankcomputing.co.uk/pykde/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
IUSE="debug doc kjs"
RDEPEND="virtual/libc
>=dev-python/sip-3.10.2
>=dev-python/PyQt-3.12
kde-base/kdelibs
!>=kde-base/kdelibs-3.3.1"
DEPEND="${RDEPEND}
sys-devel/libtool"
src_compile() {
cd ${S}
distutils_python_version
local myconf="-d /usr/lib/python${PYVER}/site-packages \
-v /usr/share/sip \
-c"
use debug && myconf="${myconf} -r -u"
use kjs && myconf="${myconf} -m"
python configure.py ${myconf}
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
find ${D}/usr/share/sip -not -type d -not -iname *.sip -exec rm '{}' \;
dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS
use doc && ( cp -r examples ${D}/usr/share/doc/${PF}
cp -r templates ${D}/usr/share/doc/${PF}
dohtml -r doc/* )
}
|