blob: 98d61f8c30d00cb269b0bca9c3b62e3b1053e5bc (
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
|
# Copyright 1999-2005 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.3.5.ebuild,v 1.7 2005/07/12 17:44:35 josejx Exp $
MAXKOFFICEVER=1.3.5
KMNAME=koffice
KMMODULE=lib
inherit kde-meta eutils
DESCRIPTION="shared koffice libraries"
HOMEPAGE="http://www.koffice.org/"
SRC_URI="$SRC_URI mirror://kde/stable/${KMNAME}/src/${KMNAME}-${PV}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="~amd64 ppc ~ppc64 x86"
IUSE=""
SLOT="0"
DEPEND="dev-util/pkgconfig"
RDEPEND="$DEPEND $(deprange $PV $MAXKOFFICEVER app-office/koffice-data)"
KMEXTRA="
interfaces/
plugins/
tools/
filters/olefilters/
filters/xsltfilter/
filters/generic_wrapper/
kounavail/
doc/koffice
doc/thesaurus"
KMEXTRACTONLY="
kchart/kdchart"
need-kde 3.1
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
}
|