Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/PyQt4: PyQt4-4.5.4.ebuild
Date: Wed, 05 Aug 2009 18:45:35
Message-Id: E1MYlUT-0003m3-BJ@stork.gentoo.org
1 arfrever 09/08/05 18:45:33
2
3 Modified: PyQt4-4.5.4.ebuild
4 Log:
5 Use PYTHON() instead of get_python(). Use ${BUILDDIR}.
6 (Portage version: 13919-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.7 dev-python/PyQt4/PyQt4-4.5.4.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt4/PyQt4-4.5.4.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt4/PyQt4-4.5.4.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/PyQt4/PyQt4-4.5.4.ebuild?r1=1.6&r2=1.7
14
15 Index: PyQt4-4.5.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.5.4.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- PyQt4-4.5.4.ebuild 4 Aug 2009 07:32:16 -0000 1.6
22 +++ PyQt4-4.5.4.ebuild 5 Aug 2009 18:45:33 -0000 1.7
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.5.4.ebuild,v 1.6 2009/08/04 07:32:16 hwoarang Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.5.4.ebuild,v 1.7 2009/08/05 18:45:33 arfrever Exp $
28
29 EAPI="2"
30 SUPPORT_PYTHON_ABIS="1"
31 @@ -71,7 +71,7 @@
32
33 src_configure() {
34 configuration() {
35 - local myconf="$(get_python) configure.py
36 + local myconf="$(PYTHON) configure.py
37 --confirm-license
38 --bindir=/usr/bin
39 --destdir=$(python_get_sitedir)
40 @@ -97,7 +97,7 @@
41
42 # Fix insecure runpath.
43 for pkg in QtCore $(use X && echo "QtDesigner QtGui"); do
44 - sed -i -e "/^LFLAGS/s:-Wl,-rpath,${S}-${PYTHON_ABI}/qpy/${pkg}::" ${pkg}/Makefile || die "failed to fix rpath issues"
45 + sed -i -e "/^LFLAGS/s:-Wl,-rpath,${BUILDDIR}/qpy/${pkg}::" ${pkg}/Makefile || die "Failed to fix rpath issues"
46 done
47 }
48 python_execute_function -s configuration