Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/PyQt: ChangeLog PyQt-3.17.4.ebuild
Date: Wed, 26 Dec 2007 00:53:16
Message-Id: E1J7KW9-00046v-Ua@stork.gentoo.org
1 caleb 07/12/26 00:53:05
2
3 Modified: ChangeLog
4 Added: PyQt-3.17.4.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4_rc11)
8
9 Revision Changes Path
10 1.100 dev-python/PyQt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt/ChangeLog?rev=1.100&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt/ChangeLog?rev=1.100&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt/ChangeLog?r1=1.99&r2=1.100
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt/ChangeLog,v
19 retrieving revision 1.99
20 retrieving revision 1.100
21 diff -u -r1.99 -r1.100
22 --- ChangeLog 5 Dec 2007 14:50:20 -0000 1.99
23 +++ ChangeLog 26 Dec 2007 00:53:05 -0000 1.100
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/PyQt
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt/ChangeLog,v 1.99 2007/12/05 14:50:20 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt/ChangeLog,v 1.100 2007/12/26 00:53:05 caleb Exp $
29 +
30 +*PyQt-3.17.4 (26 Dec 2007)
31 +
32 + 26 Dec 2007; Caleb Tennis <caleb@g.o> +PyQt-3.17.4.ebuild:
33 + version bump
34
35 05 Dec 2007; Raúl Porcel <armin76@g.o> PyQt-3.17.3.ebuild:
36 alpha/sparc stable wrt #200630
37
38
39
40 1.1 dev-python/PyQt/PyQt-3.17.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt/PyQt-3.17.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt/PyQt-3.17.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: PyQt-3.17.4.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt/PyQt-3.17.4.ebuild,v 1.1 2007/12/26 00:53:05 caleb Exp $
50
51 inherit distutils
52
53 MY_P="PyQt-x11-gpl-${PV/*_pre/snapshot-}"
54 S="${WORKDIR}/${MY_P}"
55
56 DESCRIPTION="PyQt is a set of Python bindings for the Qt toolkit."
57 HOMEPAGE="http://www.riverbankcomputing.co.uk/pyqt/"
58 #SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
59 SRC_URI="http://www.riverbankcomputing.com/Downloads/PyQt3/GPL/${MY_P}.tar.gz"
60 #SRC_URI="http://www.riverbankcomputing.com/Downloads/Snapshots/PyQt3/${MY_P}.tar.gz"
61
62 SLOT="0"
63 LICENSE="GPL-2"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 IUSE="debug doc examples"
66
67 RDEPEND="=x11-libs/qt-3*
68 >=dev-python/sip-4.7.3
69 x11-libs/qscintilla"
70 DEPEND="${RDEPEND}
71 sys-devel/libtool"
72
73 src_unpack() {
74 unpack ${A}
75 sed -i -e "s: check_license():# check_license():" "${S}"/configure.py
76 }
77
78 src_compile() {
79 distutils_python_version
80 addpredict ${QTDIR}/etc/settings
81
82 local myconf="-d /usr/$(get_libdir)/python${PYVER}/site-packages \
83 -b /usr/bin \
84 -v /usr/share/sip \
85 -n /usr/include \
86 -o /usr/$(get_libdir) \
87 -w -y qt-mt"
88 use debug && myconf="${myconf} -u"
89
90 python configure.py ${myconf}
91 emake || die "emake failed"
92 }
93
94 src_install() {
95 make DESTDIR="${D}" install || die "install failed"
96 dodoc ChangeLog NEWS README README.Linux THANKS
97 use doc && dohtml doc/PyQt.html
98 if use examples ; then
99 dodir /usr/share/doc/${PF}/examples
100 cp -r examples3/* "${D}"/usr/share/doc/${PF}/examples
101 fi
102 }
103
104
105
106 --
107 gentoo-commits@g.o mailing list