blob: 462202a71176c73952638c43552abe91a7911d36 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-1.1.ebuild,v 1.11 2001/12/23 21:35:15 danarmak Exp $
. /usr/portage/eclass/inherit.eclass || die
inherit kde-base || die
need-kde 2.2
DESCRIPTION="KDE ${PV} - KOffice"
HOMEPAGE="http://www.koffice.org/"
# turns out kde.org.eclass doesn't work here
SRC_PATH="kde/stable/${P}/src/${P}.tar.bz2"
SRC_URI="ftp://ftp.kde.org/pub/$SRC_PATH
ftp://ftp.fh-heilbronn.de/pub/mirrors/$SRC_PATH
ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH"
DEPEND="$DEPEND
>=dev-lang/python-2.0-r5"
# >=sys-devel/automake-1.4
# >=sys-devel/autoconf-1.13"
# hm. This was in achim's original. are these versions superior to the ones we have by default in a current-day rc6?
src_unpack() {
base_src_unpack all patch
kde-objprelink-patch
}
src_compile() {
kde_src_compile myconf configure
cd ${S}
make LIBPYTHON="`python-config --libs`"
}
|