Gentoo Archives: gentoo-commits

From: "Wulf Krueger (philantrop)" <philantrop@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/pykde: ChangeLog pykde-3.5.9.ebuild
Date: Wed, 20 Feb 2008 23:34:41
Message-Id: E1JRySU-0000Bq-Db@stork.gentoo.org
1 philantrop 08/02/20 23:34:38
2
3 Modified: ChangeLog
4 Added: pykde-3.5.9.ebuild
5 Log:
6 Version bump to KDE 3.5.9.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.38 kde-base/pykde/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 17 Feb 2008 02:40:22 -0000 1.37
23 +++ ChangeLog 20 Feb 2008 23:34:37 -0000 1.38
24 @@ -1,6 +1,11 @@
25 # ChangeLog for kde-base/pykde
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde/ChangeLog,v 1.37 2008/02/17 02:40:22 ingmar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde/ChangeLog,v 1.38 2008/02/20 23:34:37 philantrop Exp $
29 +
30 +*pykde-3.5.9 (20 Feb 2008)
31 +
32 + 20 Feb 2008; Wulf C. Krueger <philantrop@g.o> +pykde-3.5.9.ebuild:
33 + Version bump to KDE 3.5.9.
34
35 16 Feb 2008; Ingmar Vanhassel <ingmar@g.o> -pykde-3.5.5-r1.ebuild,
36 -pykde-3.5.6.ebuild:
37
38
39
40 1.1 kde-base/pykde/pykde-3.5.9.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde/pykde-3.5.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/pykde/pykde-3.5.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pykde-3.5.9.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/kde-base/pykde/pykde-3.5.9.ebuild,v 1.1 2008/02/20 23:34:37 philantrop Exp $
50
51 KMNAME=kdebindings
52 KMMODULE=python
53 KM_MAKEFILESREV=1
54
55 EAPI="1"
56 inherit kde-meta distutils
57
58 DESCRIPTION="PyKDE is a set of Python bindings for kdelibs."
59
60 SLOT="0"
61 LICENSE="GPL-2"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE="debug doc examples"
64
65 DEPEND="~dev-python/sip-4.6
66 ~dev-python/PyQt-3.17.2
67 kde-base/kdelibs:3.5
68 || ( kde-base/kdebase:3.5 kde-base/konsole:3.5 )
69 !dev-python/pykde"
70 RDEPEND="${DEPEND}"
71
72 src_unpack() {
73 kde-meta_src_unpack
74 cd "${S}/python/pykde"
75 epatch "${FILESDIR}/${PN}-3.5.8-python-2.5-compat.diff"
76
77 mkdir -p kparts
78 ln -s "${PREFIX}"/$(get_libdir)/kde3/libkonsolepart* ./kparts/
79 }
80
81 src_compile() {
82 cd "${S}/python/pykde"
83 distutils_python_version
84
85 local myconf="-d /usr/$(get_libdir)/python${PYVER}/site-packages \
86 -v /usr/share/sip \
87 -k $(kde-config --prefix)"
88
89 use debug && myconf="${myconf} -u"
90 myconf="${myconf} -i"
91
92 python configure.py ${myconf} || die "configure failed"
93 emake || die "emake failed"
94 }
95
96 src_install() {
97 cd "${S}/python/pykde"
98 dodir "${PREFIX}"/$(get_libdir)
99 sed -i -e "s:/lib/:/$(get_libdir)/:g" Makefile
100
101 for X in dcop kdecore kdefx kdeui kio kresources kabc kutils kfile kparts khtml kspell kdeprint kmdi ; do
102 sed -i -e '/strip $(DESTDIR).*/d' ${X}/Makefile
103 done
104
105 emake DESTDIR="${D}" install || die "emake install failed"
106 find "${D}/usr/share/sip" -not -type d -not -iname *.sip -delete
107
108 dodoc AUTHORS ChangeLog NEWS README THANKS
109 use doc && dohtml -r doc/*
110 if use examples ; then
111 cp -r examples "${D}/usr/share/doc/${PF}"
112 cp -r templates "${D}/usr/share/doc/${PF}"
113 fi
114 }
115
116
117
118 --
119 gentoo-commits@l.g.o mailing list