blob: d3d5402433c7cb7522e321a9e3e04e69a653d209 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-office/siag/siag-3.4.7.ebuild,v 1.2 2001/04/28 08:04:32 achim Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A free Office package for Linux"
SRC_URI="ftp://siag.nu/pub/siag/${P}.tar.gz"
HOMEPAGE="http://siag.nu/"
DEPEND="virtual/x11
>=dev-libs/gmp-3.1.1
>=media-libs/t1lib-1.0.1
mysql? ( dev-db/mysql )
guile? ( dev-util/guile )"
RDEPEND="virtual/x11
>=media-libs/t1lib-1.0.1"
src_compile() {
local myconf
if [ "`use mysql`" ]
then
myconf="--with-mysql"
else
myconf="--without-mysql"
fi
if [ "`use guile`" ]
then
myconf="$myconf --with-guile"
else
myconf="$myconf --without-guile"
fi
# siag only supports python1.5
# if [ "`use python`" ]
# then
# myconf="$myconf --with-python"
# else
# myconf="$myconf --without-python"
# fi
try ./configure --prefix=/opt/siag --mandir=/opt/siag/share/man --host=${CHOST} \
--with-gmp --with-t1lib $myconf
try make
}
src_install () {
try make DESTDIR=${D} install
}
|