Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/koffice-libs: ChangeLog koffice-libs-2.3.3-r2.ebuild koffice-libs-2.3.3.ebuild
Date: Tue, 07 Feb 2012 21:11:00
Message-Id: 20120207211050.A5CE62004B@flycatcher.gentoo.org
1 dilfridge 12/02/07 21:10:50
2
3 Modified: ChangeLog
4 Added: koffice-libs-2.3.3-r2.ebuild
5 Removed: koffice-libs-2.3.3.ebuild
6 Log:
7 Add patch to fix build with Qt 4.8, bug 399291. Backport from Calligra.
8
9 (Portage version: 2.1.10.44/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.134 app-office/koffice-libs/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/koffice-libs/ChangeLog?rev=1.134&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/koffice-libs/ChangeLog?rev=1.134&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/koffice-libs/ChangeLog?r1=1.133&r2=1.134
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v
21 retrieving revision 1.133
22 retrieving revision 1.134
23 diff -u -r1.133 -r1.134
24 --- ChangeLog 1 Oct 2011 03:21:29 -0000 1.133
25 +++ ChangeLog 7 Feb 2012 21:10:50 -0000 1.134
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-office/koffice-libs
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.133 2011/10/01 03:21:29 phajdan.jr Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/ChangeLog,v 1.134 2012/02/07 21:10:50 dilfridge Exp $
32 +
33 +*koffice-libs-2.3.3-r2 (07 Feb 2012)
34 +
35 + 07 Feb 2012; Andreas K. Huettel <dilfridge@g.o>
36 + -koffice-libs-2.3.3.ebuild, +koffice-libs-2.3.3-r2.ebuild,
37 + +files/koffice-libs-2.3.3-qt48.patch:
38 + Add patch to fix build with Qt 4.8, bug 399291. Backport from Calligra.
39
40 01 Oct 2011; Pawel Hajdan jr <phajdan.jr@g.o>
41 koffice-libs-2.3.3-r1.ebuild:
42
43
44
45 1.1 app-office/koffice-libs/koffice-libs-2.3.3-r2.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/koffice-libs/koffice-libs-2.3.3-r2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/koffice-libs/koffice-libs-2.3.3-r2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: koffice-libs-2.3.3-r2.ebuild
51 ===================================================================
52 # Copyright 1999-2012 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/koffice-libs-2.3.3-r2.ebuild,v 1.1 2012/02/07 21:10:50 dilfridge Exp $
55
56 EAPI=3
57
58 KMNAME="koffice"
59 KMMODULE="libs"
60 OPENGL_REQUIRED="optional"
61 CPPUNIT_REQUIRED="optional"
62 inherit kde4-meta
63
64 DESCRIPTION="Shared KOffice libraries"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="crypt openexr reports"
67
68 RDEPEND="
69 >=app-office/koffice-data-${PV}:${SLOT}
70 dev-libs/libxml2
71 dev-libs/libxslt
72 dev-libs/soprano
73 $(add_kdebase_dep kdepimlibs)
74 media-libs/lcms:0
75 crypt? ( app-crypt/qca:2 )
76 openexr? ( media-libs/openexr )
77 opengl? ( media-libs/mesa )
78 !app-office/kchart
79 "
80 DEPEND="${RDEPEND}"
81 # doc? ( app-doc/doxygen )"
82
83 KMEXTRA="
84 doc/koffice/
85 doc/thesaurus/
86 filters/generic_wrapper/
87 filters/libkowmf/
88 filters/libmsooxml/
89 filters/xsltfilter/
90 filters/kchart/
91 filters/kformula/
92 interfaces/
93 kchart/
94 kformula/
95 kounavail/
96 plugins/
97 tools/
98 "
99
100 KMEXTRACTONLY="
101 KoConfig.h.cmake
102 doc/koffice.desktop
103 filters/
104 "
105
106 KMSAVELIBS="true"
107
108 RESTRICT=test
109 # bug 385025
110
111 PATCHES=( "${FILESDIR}/${P}-qt48.patch" )
112
113 src_configure() {
114 mycmakeargs=(
115 $(cmake-utils_use_with crypt QCA2)
116 $(cmake-utils_use_with opengl OpenGL)
117 $(cmake-utils_use_with openexr OpenEXR)
118 -DWITH_Spnav=OFF
119 -DBUILD_kchart=ON
120 -DBUILD_kformula=ON
121 $(cmake-utils_use_build reports koreport)
122 )
123 use crypt && \
124 mycmakeargs+=(-DQCA2_LIBRARIES=/usr/$(get_libdir)/qca2/libqca.so.2)
125
126 kde4-meta_src_configure
127 }
128
129 src_install() {
130 newdoc kounavail/README README.kounavail || die
131
132 kde4-meta_src_install
133
134 # this is already installed by koffice-data
135 rm -f "${D}/usr/include/config-opengl.h"
136 rm -f "${D}/usr/include/KoConfig.h"
137
138 # this is not useful and only leads to error messages, bug 381955
139 rm -f "${D}/usr/share/applications/kde4/koffice.desktop"
140 }