Gentoo Archives: gentoo-commits

From: "Theo Chatzimichos (tampakrap)" <tampakrap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-script: qt-script-4.7.2.ebuild ChangeLog
Date: Tue, 01 Mar 2011 19:10:38
Message-Id: 20110301191008.9A69320054@flycatcher.gentoo.org
1 tampakrap 11/03/01 19:10:08
2
3 Modified: ChangeLog
4 Added: qt-script-4.7.2.ebuild
5 Log:
6 Version bump Qt 4.7.2
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.87 x11-libs/qt-script/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-script/ChangeLog?rev=1.87&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-script/ChangeLog?rev=1.87&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-script/ChangeLog?r1=1.86&r2=1.87
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-script/ChangeLog,v
20 retrieving revision 1.86
21 retrieving revision 1.87
22 diff -u -r1.86 -r1.87
23 --- ChangeLog 23 Dec 2010 07:56:36 -0000 1.86
24 +++ ChangeLog 1 Mar 2011 19:10:08 -0000 1.87
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/qt-script
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-script/ChangeLog,v 1.86 2010/12/23 07:56:36 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-script/ChangeLog,v 1.87 2011/03/01 19:10:08 tampakrap Exp $
31 +
32 +*qt-script-4.7.2 (01 Mar 2011)
33 +
34 + 01 Mar 2011; Theo Chatzimichos <tampakrap@g.o>
35 + +qt-script-4.7.2.ebuild:
36 + Version bump Qt 4.7.2
37
38 23 Dec 2010; Samuli Suominen <ssuominen@g.o> qt-script-4.6.3.ebuild:
39 ppc64 stable wrt #341703
40
41
42
43 1.1 x11-libs/qt-script/qt-script-4.7.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-script/qt-script-4.7.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-script/qt-script-4.7.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qt-script-4.7.2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-script/qt-script-4.7.2.ebuild,v 1.1 2011/03/01 19:10:08 tampakrap Exp $
53
54 EAPI="3"
55 inherit qt4-build
56
57 DESCRIPTION="The ECMAScript module for the Qt toolkit"
58 SLOT="4"
59 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
60 IUSE="iconv +jit private-headers"
61
62 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=]"
63 RDEPEND="${DEPEND}"
64
65 pkg_setup() {
66 QT4_TARGET_DIRECTORIES="src/script/"
67 QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
68 include/Qt/
69 include/QtCore/
70 include/QtScript/
71 src/3rdparty/javascriptcore/
72 src/corelib/"
73
74 qt4-build_pkg_setup
75 }
76
77 src_configure() {
78 myconf="${myconf} $(qt_use iconv) $(qt_use jit javascript-jit) -no-xkb
79 -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor -no-xinerama
80 -no-xshape -no-sm -no-opengl -no-nas-sound -no-dbus -no-cups -no-nis -no-gif
81 -no-libpng -no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon
82 -no-qt3support -no-xmlpatterns -no-freetype -no-libtiff
83 -no-accessibility -no-fontconfig -no-glib -no-opengl -no-svg
84 -no-gtkstyle"
85 qt4-build_src_configure
86 }
87
88 src_install() {
89 qt4-build_src_install
90 #install private headers
91 if use private-headers; then
92 insinto "${QTHEADERDIR#${EPREFIX}}"/QtScript/private
93 find "${S}"/src/script -type f -name "*_p.h" -exec doins {} \;
94 fi
95 }