blob: 06f4903f4ebe77f5b9624f7933c1e6303e76739d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-1.2_beta2.ebuild,v 1.2 2002/06/28 21:55:33 verwilst Exp $
inherit kde-base || die
need-kde 3
S="${WORKDIR}/koffice-1.2-beta2"
DESCRIPTION="A free, integrated office suite for KDE, the K Desktop Environment."
HOMEPAGE="http://www.koffice.org/"
SRC_URI="ftp://ftp.kde.org/pub/kde/unstable/koffice-1.2-beta2/src/koffice-1.2-beta2.tar.bz2"
DEPEND="$DEPEND
>=dev-lang/python-2.2.1
>=media-libs/libart_lgpl-2.3.9
>=media-gfx/imagemagick-5.4.5"
export LIBPYTHON="`python-config --libs`"
export LIBPYTHON="${LIBPYTHON//-L \/usr\/lib\/python2.2\/config}"
need-automake 1.5
need-autoconf 2.5
src_compile() {
myconf="$myconf --enable-all"
kde_src_compile myconf
#the dir kchar/kdchart cannot be compiled with the -fomit-frame-pointer flag present
CXXFLAGS2="$CXXFLAGS"
CFLAGS2="$CFLAGS"
CFLAGS=${CFLAGS/-fomit-frame-pointer}
CXXFLAGS=${CXXFLAGS/-fomit-frame-pointer}
cd ${S}
kde_src_compile configure
cd ${S}/kchart/kdchart
make
CFLAGS="$CFLAGS2"
CXXFLAGS="$CXXFLAGS2"
cd ${S}
kde_src_compile configure
make
}
|