Gentoo Archives: gentoo-commits

From: "Dominik Kapusta (ayoy)" <ayoy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: ChangeLog qt-assistant-4.6.0_beta1.ebuild
Date: Sat, 31 Oct 2009 11:53:17
Message-Id: E1N4CWB-00086f-1Q@stork.gentoo.org
1 ayoy 09/10/31 11:53:15
2
3 Modified: ChangeLog qt-assistant-4.6.0_beta1.ebuild
4 Log:
5 Fix libQtHelp linking issues (bug #289811)
6 (Portage version: 2.2_rc46/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.52 x11-libs/qt-assistant/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/ChangeLog?rev=1.52&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/ChangeLog?rev=1.52&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/ChangeLog?r1=1.51&r2=1.52
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
18 retrieving revision 1.51
19 retrieving revision 1.52
20 diff -u -r1.51 -r1.52
21 --- ChangeLog 29 Oct 2009 11:57:21 -0000 1.51
22 +++ ChangeLog 31 Oct 2009 11:53:14 -0000 1.52
23 @@ -1,6 +1,10 @@
24 # ChangeLog for x11-libs/qt-assistant
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.51 2009/10/29 11:57:21 fauli Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.52 2009/10/31 11:53:14 ayoy Exp $
28 +
29 + 31 Oct 2009; Dominik Kapusta <ayoy@g.o>
30 + qt-assistant-4.6.0_beta1.ebuild:
31 + Fix libQtHelp linking issues (bug #289811)
32
33 29 Oct 2009; Christian Faulhammer <fauli@g.o>
34 qt-assistant-4.5.3.ebuild:
35
36
37
38 1.3 x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild?r1=1.2&r2=1.3
43
44 Index: qt-assistant-4.6.0_beta1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- qt-assistant-4.6.0_beta1.ebuild 16 Oct 2009 19:52:21 -0000 1.2
51 +++ qt-assistant-4.6.0_beta1.ebuild 31 Oct 2009 11:53:14 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild,v 1.2 2009/10/16 19:52:21 wired Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.6.0_beta1.ebuild,v 1.3 2009/10/31 11:53:14 ayoy Exp $
57
58 EAPI="2"
59 inherit qt4-build
60 @@ -45,10 +45,11 @@
61 }
62
63 src_compile() {
64 + # help libQtHelp find freshly built libQtCLucene (bug #289811)
65 + export LD_LIBRARY_PATH="${S}/lib"
66 qt4-build_src_compile
67 # ugly hack to build docs
68 cd "${S}"
69 - export LD_LIBRARY_PATH="${S}/lib"
70 qmake "LIBS+=-L${QTLIBDIR}" "CONFIG+=nostrip" projects.pro || die "qmake projects faied"
71 emake qch_docs || die "emake docs failed"
72 }