blob: 1332e4039a635e6a730efa066d2d9e6774752cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/koffice-libs-2.2.2.ebuild,v 1.4 2010/11/04 13:43:26 hwoarang Exp $
EAPI="2"
KMNAME="koffice"
KMMODULE="libs"
OPENGL_REQUIRED="optional"
CPPUNIT_REQUIRED="optional"
inherit kde4-meta
DESCRIPTION="Shared KOffice libraries."
KEYWORDS="~amd64 ~x86"
IUSE="crypt openexr reports"
# the contents of kchart have been _temporarily_ moved into koffice-libs in 2.2.0
RDEPEND="
>=app-office/koffice-data-${PV}:${SLOT}
dev-libs/libxml2
dev-libs/libxslt
>=kde-base/kdepimlibs-${KDE_MINIMAL}
media-libs/lcms:0
crypt? ( app-crypt/qca:2 )
openexr? ( media-libs/openexr )
opengl? ( media-libs/mesa )
!<app-office/kchart-2.2.0
"
DEPEND="${RDEPEND}"
# doc? ( app-doc/doxygen )"
KMEXTRA="
doc/koffice/
doc/thesaurus/
filters/generic_wrapper/
filters/libkowmf/
filters/libmsooxml/
filters/xsltfilter/
filters/kchart/
filters/kformula/
interfaces/
kounavail/
plugins/
tools/
kchart/
kformula/
"
KMEXTRACTONLY="
KoConfig.h.cmake
doc/koffice.desktop
filters/
"
KMSAVELIBS="true"
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with crypt QCA2)
$(cmake-utils_use_with opengl OpenGL)
$(cmake-utils_use_with openexr OpenEXR)
-DBUILD_kchart=ON
-DBUILD_kformula=ON
$(cmake-utils_use_build reports koreport)
)
use crypt && \
mycmakeargs+=(-DQCA2_LIBRARIES=/usr/$(get_libdir)/qca2/libqca.so.2)
kde4-meta_src_configure
}
src_install() {
newdoc kounavail/README README.kounavail || die
kde4-meta_src_install
# this is already installed by koffice-data
rm -f "${D}/usr/include/config-opengl.h"
rm -f "${D}/usr/include/KoConfig.h"
}
|