Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.5.2.ebuild ChangeLog
Date: Sat, 27 Jun 2009 19:16:23
Message-Id: E1MKdNt-0003eF-Qv@stork.gentoo.org
1 yngwin 09/06/27 19:16:21
2
3 Modified: ChangeLog
4 Added: qt-assistant-4.5.2.ebuild
5 Log:
6 Qt 4.5.2 release version bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.43 x11-libs/qt-assistant/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/ChangeLog?rev=1.43&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/ChangeLog?rev=1.43&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/ChangeLog?r1=1.42&r2=1.43
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
19 retrieving revision 1.42
20 retrieving revision 1.43
21 diff -u -r1.42 -r1.43
22 --- ChangeLog 6 Jun 2009 08:41:17 -0000 1.42
23 +++ ChangeLog 27 Jun 2009 19:16:21 -0000 1.43
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-libs/qt-assistant
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.42 2009/06/06 08:41:17 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.43 2009/06/27 19:16:21 yngwin Exp $
29 +
30 +*qt-assistant-4.5.2 (27 Jun 2009)
31 +
32 + 27 Jun 2009; Ben de Groot <yngwin@g.o> +qt-assistant-4.5.2.ebuild:
33 + Version bump
34
35 06 Jun 2009; Markus Meier <maekke@g.o> qt-assistant-4.5.1.ebuild:
36 amd64 stable, bug #266201
37
38
39
40 1.1 x11-libs/qt-assistant/qt-assistant-4.5.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.5.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.5.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qt-assistant-4.5.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.5.2.ebuild,v 1.1 2009/06/27 19:16:21 yngwin Exp $
50
51 EAPI="2"
52 inherit qt4-build
53
54 DESCRIPTION="The assistant help module for the Qt toolkit"
55 SLOT="4"
56 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd"
57 IUSE=""
58
59 DEPEND="~x11-libs/qt-gui-${PV}[debug=]
60 ~x11-libs/qt-sql-${PV}[debug=,sqlite]
61 ~x11-libs/qt-webkit-${PV}[debug=]"
62 RDEPEND="${DEPEND} !<x11-libs/qt-4.4.0:4"
63
64 # Pixeltool isn't really assistant related, but it relies on
65 # the assistant libraries. And qdoc3 is needed by qt-creator...
66 QT4_TARGET_DIRECTORIES="tools/assistant tools/pixeltool tools/qdoc3"
67 QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
68 src/3rdparty/clucene/
69 tools/shared/fontpanel
70 include/
71 src/
72 doc/"
73
74 src_configure() {
75 myconf="${myconf} -no-xkb -no-fontconfig -no-xrender -no-xrandr
76 -no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm -no-opengl
77 -no-nas-sound -no-dbus -iconv -no-cups -no-nis -no-gif -no-libpng
78 -no-libmng -no-libjpeg -no-openssl -system-zlib -no-phonon
79 -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility
80 -no-fontconfig -no-glib -no-opengl -no-qt3support -no-svg -no-gtkstyle"
81 qt4-build_src_configure
82 }
83
84 src_install() {
85 qt4-build_src_install
86 insinto ${QTDOCDIR}
87 doins -r "${S}"/doc/qch/ || die "Installing qch documentation failed"
88 dobin "${S}"/tools/qdoc3/qdoc3 || die "Installing qdoc3 failed"
89
90 # install correct assistant icon, bug 241208
91 dodir /usr/share/pixmaps/ || die "dodir failed"
92 insinto /usr/share/pixmaps/ || die "insinto failed"
93 doins tools/assistant/tools/assistant/images/assistant.png \
94 || die "doins failed"
95 # Note: absolute image path required here!
96 make_desktop_entry /usr/bin/assistant Assistant \
97 /usr/share/pixmaps/assistant.png 'Qt;Development;GUIDesigner' \
98 || die "make_desktop_entry failed"
99 }