Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-core: qt-core-4.4.0_rc1.ebuild
Date: Mon, 24 Dec 2007 15:06:19
Message-Id: E1J6osg-0006XQ-6j@stork.gentoo.org
1 caleb 07/12/24 15:06:14
2
3 Modified: qt-core-4.4.0_rc1.ebuild
4 Log:
5 If we already have a qconfig.pri on the system, don't overwrite it with a new one
6 (Portage version: 2.1.4_rc11)
7
8 Revision Changes Path
9 1.7 x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild?r1=1.6&r2=1.7
14
15 Index: qt-core-4.4.0_rc1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- qt-core-4.4.0_rc1.ebuild 23 Dec 2007 20:55:17 -0000 1.6
22 +++ qt-core-4.4.0_rc1.ebuild 24 Dec 2007 15:06:13 -0000 1.7
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild,v 1.6 2007/12/23 20:55:17 caleb Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-core/qt-core-4.4.0_rc1.ebuild,v 1.7 2007/12/24 15:06:13 caleb Exp $
28
29 EAPI=1
30
31 @@ -78,8 +78,12 @@
32 cat > "${T}/44qt4" << EOF
33 LDPATH=${libdirs:1}
34 EOF
35 -
36 doenvd "${T}/44qt4"
37 +
38 + # If we already have a qconfig.pri installed on the system, don't overwrite it with a new one.
39 + if [ -a ${QTDATADIR}/mkspecs/qconfig.pri ]; then
40 + rm "${D}"/${QTDATDIR}/mkspecs/qconfig.pri
41 + fi
42 }
43
44 pkg_setup() {
45
46
47
48 --
49 gentoo-commits@g.o mailing list