summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gnome-extra/guppi/guppi-0.35.5.ebuild')
-rw-r--r--gnome-extra/guppi/guppi-0.35.5.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/gnome-extra/guppi/guppi-0.35.5.ebuild b/gnome-extra/guppi/guppi-0.35.5.ebuild
deleted file mode 100644
index c416e8fe551e..000000000000
--- a/gnome-extra/guppi/guppi-0.35.5.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# 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>
-# /home/cvsroot/gentoo-x86/gnome-office/gnumeric/gnumeric-0.64-r1.ebuild,v 1.1 2001/05/17 13:29:30 achim Exp
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.35.5.ebuild,v 1.5 2001/08/31 03:23:39 pm Exp $
-
-
-A=Guppi-${PV}.tar.gz
-S=${WORKDIR}/Guppi-${PV}
-DESCRIPTION="GNOME Plottin Tool"
-SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/Guppi/${A}"
-HOMEPAGE="http://www.gnome.org/guppi/"
-
-DEPEND="nls? ( sys-devel/gettext )
- >=dev-util/guile-1.4
- >=gnome-office/gnumeric-0.65
- >=dev-util/xml-i18n-tools-0.8.4
- python? ( >=dev-lang/python-2.0 )
- bonobo? ( >=gnome-base/bonobo-0.37 )"
-
-RDEPEND=">=media-libs/gdk-pixbuf-0.11.0
- >=dev-util/guile-1.4
- >=gnome-base/gnome-print-0.29
- bonobo? ( >=gnome-base/bonobo-0.37 )"
-
-src_compile() {
- local myconf
-
- if [ "`use bonobo`" ]
- then
- myconf="--enable-bonobo"
- else
- myconf="--disable-bonobo"
- fi
-
- if [ "`use python`" ]
- then
- myconf="--enable-python"
- else
- myconf="--disable-python"
- fi
- if [ -z "`use nls`" ] ; then
- myconf="$myconf --disable-nls"
- fi
- if [ -z "`use readline`" ] ; then
- myconf="$myconf --disable-guile-readline"
- fi
-
- try ./configure --host=${CHOST} --prefix=/opt/gnome --enable-gnumeric \
- ${myconf}
-
- try make # Doesn't work with -j 4 (hallski)
-}
-
-src_install() {
- try make prefix=${D}/opt/gnome PREFIX=${D}/usr install
- dodoc AUTHORS COPYING ChangeLog NEWS README TODO
-}
-
-
-
-
-
-