blob: 841e8b4c2469a0b3765a38f578efe3a1286d9f7e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/koffice-libs/koffice-libs-1.5_rc1.ebuild,v 1.5 2006/04/08 19:02:45 nixnut Exp $
MAXKOFFICEVER=${PV}
KMNAME=koffice
KMMODULE=lib
inherit kde-meta eutils
DESCRIPTION="Shared KOffice libraries."
HOMEPAGE="http://www.koffice.org/"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"
RDEPEND="$(deprange $PV $MAXKOFFICEVER app-office/koffice-data)
virtual/python
dev-lang/ruby"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
dev-util/pkgconfig"
RDEPEND="${RDEPEND}
|| ( kde-base/kdeprint kde-base/kdebase )"
KMEXTRA="interfaces/
plugins/
tools/
filters/olefilters/
filters/xsltfilter/
filters/generic_wrapper/
kounavail/
doc/api/
doc/koffice/
doc/thesaurus/"
KMEXTRACTONLY="
kchart/kdchart/"
PATCHES="${FILESDIR}/${P}-kspell2.patch"
need-kde 3.4
src_unpack() {
kde-meta_src_unpack unpack
# Force the compilation of libkopainter.
sed -i 's:$(KOPAINTERDIR):kopainter:' $S/lib/Makefile.am
kde-meta_src_unpack makefiles
}
src_compile() {
local myconf="--enable-scripting --with-pythonfir=${ROOT}/usr/$(get_libdir)/python${PYVER}/site-packages"
kde-meta_src_compile
if use doc; then
make apidox || die
fi
}
src_install() {
kde-meta_src_install
if use doc; then
make DESTDIR=${D} install-apidox || die
fi
}
|