diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-12-27 23:26:57 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-12-27 23:26:57 +0000 |
commit | 9a00710e0bef67fddcf38b34dcb4146e48a20bec (patch) | |
tree | f6ac729e6b539c67e66ff4daf26f3aaaee1d0e21 /app-office | |
parent | updated to latest version and removed old unused files (diff) | |
download | historical-9a00710e0bef67fddcf38b34dcb4146e48a20bec.tar.gz historical-9a00710e0bef67fddcf38b34dcb4146e48a20bec.tar.bz2 historical-9a00710e0bef67fddcf38b34dcb4146e48a20bec.zip |
new version
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/gnumeric/files/digest-gnumeric-0.99.1 | 1 | ||||
-rw-r--r-- | app-office/gnumeric/gnumeric-0.99.1.ebuild | 90 |
2 files changed, 91 insertions, 0 deletions
diff --git a/app-office/gnumeric/files/digest-gnumeric-0.99.1 b/app-office/gnumeric/files/digest-gnumeric-0.99.1 new file mode 100644 index 000000000000..d297da7d71f2 --- /dev/null +++ b/app-office/gnumeric/files/digest-gnumeric-0.99.1 @@ -0,0 +1 @@ +MD5 98e683cad6a5c84fd41bfef24da13d6a gnumeric-0.99.1.tar.bz2 8351744 diff --git a/app-office/gnumeric/gnumeric-0.99.1.ebuild b/app-office/gnumeric/gnumeric-0.99.1.ebuild new file mode 100644 index 000000000000..10b8ea869dc9 --- /dev/null +++ b/app-office/gnumeric/gnumeric-0.99.1.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Martin Schlemmer <azarah@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-0.99.1.ebuild,v 1.1 2001/12/27 23:26:57 azarah Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Gnumeric, the GNOME Spreadsheet" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/gnumeric/${P}.tar.bz2" +HOMEPAGE="http://www.gnome.org/gnome-office/gnumeric.shtml" + +# We actually need guile-1.5 +RDEPEND=">=x11-libs/gtk+-1.2.10-r3 + >=gnome-base/gnome-libs-1.4.1.2-r1 + >=gnome-base/oaf-0.6.7 + >=gnome-base/ORBit-0.5.12-r1 + >=gnome-base/libglade-0.17 + >=gnome-base/gnome-print-0.31 + >=gnome-extra/gal-0.18 + >=dev-libs/libxml-1.8.16 + >=dev-libs/libole2-0.2.4 + >=gnome-base/bonobo-1.0.17 + ~media-libs/freetype-1.3.1 + perl? ( >=sys-devel/perl-5 ) + python? ( >=dev-lang/python-2.0 ) + gb? ( >=gnome-extra/gb-0.0.20-r1 ) + guile? ( >=dev-util/guile-1.5 ) + libgda? ( >=gnome-extra/libgda-0.2.91 ) + evo? ( >=net-mail/evolution-0.13 )" + +DEPEND="${RDEPEND} + >=dev-util/intltool-0.11 + nls? ( sys-devel/gettext )" + + +src_compile() { + + local myconf + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + if [ "`use gb`" ]; then + #does not work atm + myconf="${myconf} --without-gb" + else + myconf="${myconf} --without-gb" + fi + if [ "`use guile`" ]; then + myconf="${myconf} --with-guile" + else + myconf="${myconf} --without-guile" + fi + if [ "`use perl`" ]; then + myconf="${myconf} --with-perl" + else + myconf="${myconf} --without-perl" + fi + if [ "`use python`" ]; then + myconf="${myconf} --with-python" + else + myconf="${myconf} --without-python" + fi + if [ "`use libgda`" ]; then + myconf="${myconf} --with-gda" + else + myconf="${myconf} --without-gda" + fi + if [ "`use evo`" ]; then + myconf="${myconf} --with-evolution" + fi + + CFLAGS="$CFLAGS `gdk-pixbuf-config --cflags`" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-bonobo \ + ${myconf} || die + + emake || make || die +} + +src_install() { + + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + install || die + + dodoc AUTHORS COPYING *ChangeLog HACKING NEWS README TODO +} + |