Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/proj/en/desktop/kde: qt4-based-ebuild-howto.xml
Date: Fri, 26 Jun 2009 09:12:50
Message-Id: E1MK7UF-0003Xo-8V@stork.gentoo.org
1 hwoarang 09/06/26 09:12:47
2
3 Modified: qt4-based-ebuild-howto.xml
4 Log:
5 Include qt dependencies based on debug use flag
6
7 Revision Changes Path
8 1.6 xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml?rev=1.6&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml?rev=1.6&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml?r1=1.5&r2=1.6
13
14 Index: qt4-based-ebuild-howto.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml,v
17 retrieving revision 1.5
18 retrieving revision 1.6
19 diff -u -r1.5 -r1.6
20 --- qt4-based-ebuild-howto.xml 23 Jun 2009 10:53:56 -0000 1.5
21 +++ qt4-based-ebuild-howto.xml 26 Jun 2009 09:12:47 -0000 1.6
22 @@ -1,6 +1,6 @@
23 <?xml version="1.0" encoding="UTF-8"?>
24 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml,v 1.5 2009/06/23 10:53:56 hwoarang Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/desktop/kde/qt4-based-ebuild-howto.xml,v 1.6 2009/06/26 09:12:47 hwoarang Exp $ -->
27
28 <guide link="/proj/en/desktop/kde/qt4-ebuild-howto.xml" lang="en">
29 <title>Qt4-based Ebuild HowTo</title>
30 @@ -17,8 +17,8 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>0.3</version>
35 -<date>2009-06-23</date>
36 +<version>0.4</version>
37 +<date>2009-06-26</date>
38
39 <chapter>
40 <title>Choosing eclass and EAPI version</title>
41 @@ -89,6 +89,11 @@
42 <pre caption="Add 'debug' use flag">
43 IUSE="debug"
44 </pre>
45 + <p>In case 'debug' use flag is present on IUSE, you must adjust the qt dependencies accordingly</p>
46 + <pre caption="Adjusted qt4 dependencies">
47 + DEPEND="x11-libs/qt-gui:4[debug?]
48 + x11-libs/qt-sql:4[debug?]"
49 + </pre>
50 <impo>
51 'debug' use flag usage implies that you have already followed the <uri link="/proj/en/qa/backtraces.xml">
52 "How to get meaningful backtraces in Gentoo"</uri> tutorial.