Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/shiboken: ChangeLog shiboken-1.1.1.ebuild
Date: Wed, 30 May 2012 07:38:57
Message-Id: 20120530073842.B4BC92004B@flycatcher.gentoo.org
1 jlec 12/05/30 07:38:42
2
3 Modified: ChangeLog shiboken-1.1.1.ebuild
4 Log:
5 Add fix for prefix, missing rpath for qt4 installation
6
7 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 dev-python/shiboken/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 29 May 2012 15:41:55 -0000 1.26
23 +++ ChangeLog 30 May 2012 07:38:42 -0000 1.27
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/shiboken
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.26 2012/05/29 15:41:55 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.27 2012/05/30 07:38:42 jlec Exp $
29 +
30 + 30 May 2012; Justin Lecher <jlec@g.o> shiboken-1.1.1.ebuild,
31 + +files/rpath.cmake:
32 + Add fix for prefix, missing rpath for qt4 installation
33
34 29 May 2012; Justin Lecher <jlec@g.o> shiboken-1.1.1.ebuild:
35 Added ~-linux keywords, tested by me
36
37
38
39 1.3 dev-python/shiboken/shiboken-1.1.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.1.1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.1.1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/shiboken/shiboken-1.1.1.ebuild?r1=1.2&r2=1.3
44
45 Index: shiboken-1.1.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.1.1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- shiboken-1.1.1.ebuild 29 May 2012 15:41:55 -0000 1.2
52 +++ shiboken-1.1.1.ebuild 30 May 2012 07:38:42 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.1.1.ebuild,v 1.2 2012/05/29 15:41:55 jlec Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.1.1.ebuild,v 1.3 2012/05/30 07:38:42 jlec Exp $
58
59 EAPI=4
60
61 @@ -40,6 +40,12 @@
62 # caused by the usage of a different version suffix with python >= 3.2
63 sed -i -e "/get_config_var('SOABI')/d" \
64 cmake/Modules/FindPython3InterpWithDebug.cmake || die
65 + if use prefix; then
66 + cp "${FILESDIR}"/rpath.cmake .
67 + sed \
68 + -i '1iinclude(rpath.cmake)' \
69 + CMakeLists.txt || die
70 + fi
71 }
72
73 src_configure() {