blob: 43f7320aa6e87910f3e090c418f22459aabd2903 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-1.6.1-r1.ebuild,v 1.10 2007/02/16 11:30:33 flameeyes Exp $
inherit kde
RV="${PV}"
MY_P="koffice-${RV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="KOffice is an integrated office suite for KDE, the K Desktop Environment."
HOMEPAGE="http://www.koffice.org/"
SRC_URI="mirror://kde/stable/koffice-${PV}/src/${P}.tar.bz2"
#SRC_URI="mirror://kde/unstable/koffice-${PV/_/-}/src/${MY_P}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
# See bug #130442.
#IUSE="doc mysql opengl postgres"
IUSE="doc mysql postgres"
RDEPEND=">=media-libs/freetype-2
media-libs/fontconfig
media-libs/libart_lgpl
dev-libs/libxml2
dev-libs/libxslt
sys-libs/readline
mysql? ( virtual/mysql )
postgres? ( <dev-libs/libpqxx-2.6.9 )
virtual/python
dev-lang/ruby
>=app-text/wv2-0.1.9
>=app-text/libwpd-0.8.2
>=media-gfx/imagemagick-6.2.5.5
>=media-libs/lcms-1.15
media-libs/tiff
media-libs/jpeg
>=media-libs/openexr-1.2.2-r2
media-libs/libpng
>=media-libs/libexif-0.6.13-r1
virtual/opengl
virtual/glu"
# opengl? ( virtual/opengl virtual/glu )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
# add blockers on split packages derived from this one
for x in $(get-child-packages ${CATEGORY}/${PN}); do
DEPEND="${DEPEND} !${x}"
RDEPEND="${RDEPEND} !${x}"
done
PATCHES="${FILESDIR}/koffice-xpdf-CVE-2007-0104.diff"
need-kde 3.4
# TODO: kword sql plugin needs Qt compiled with sql support
# the dependency on python is needed for scripting support in kexi
# and for kivio/kiviopart/kiviosdk.
pkg_setup() {
# use opengl &&
if ! built_with_use =x11-libs/qt-3* opengl ; then
eerror "You need to build x11-libs/qt with opengl use flag enabled."
die
fi
}
src_unpack() {
kde_src_unpack
# FIXME - disable broken tests for now
sed -i -e "s:TESTSDIR =.*:TESTSDIR=:" ${S}/krita/core/Makefile.am \
`ls ${S}/krita/colorspaces/*/Makefile.am`
sed -i -e "s:toolbar tests:toolbar:" ${S}/kplato/Makefile.am
}
src_compile() {
local myconf="$(use_enable mysql) $(use_enable postgres pgsql)"
# $(use_enable opengl gl)"
kde_src_compile
if use doc; then
make apidox || die
fi
}
src_install() {
kde_src_install
if use doc; then
make DESTDIR="${D}" install-apidox || die
fi
dodoc changes-*
}
|