diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-11-04 04:54:54 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-11-04 04:54:54 +0000 |
commit | d0ccafe94f3dc7a6a758d41e01fd8407efc39dc1 (patch) | |
tree | c8eba93179d1fb4bc784239285e64e967bfcd54e /gnome-extra/guppi | |
parent | new version (diff) | |
download | historical-d0ccafe94f3dc7a6a758d41e01fd8407efc39dc1.tar.gz historical-d0ccafe94f3dc7a6a758d41e01fd8407efc39dc1.tar.bz2 historical-d0ccafe94f3dc7a6a758d41e01fd8407efc39dc1.zip |
new version
Diffstat (limited to 'gnome-extra/guppi')
-rw-r--r-- | gnome-extra/guppi/files/digest-guppi-0.40.0 | 1 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.0.ebuild | 72 |
2 files changed, 73 insertions, 0 deletions
diff --git a/gnome-extra/guppi/files/digest-guppi-0.40.0 b/gnome-extra/guppi/files/digest-guppi-0.40.0 new file mode 100644 index 000000000000..c74dd47d2e2e --- /dev/null +++ b/gnome-extra/guppi/files/digest-guppi-0.40.0 @@ -0,0 +1 @@ +MD5 907d7f2e4e94825c1c98a4a312b0e065 Guppi-0.40.0.tar.bz2 1077248 diff --git a/gnome-extra/guppi/guppi-0.40.0.ebuild b/gnome-extra/guppi/guppi-0.40.0.ebuild new file mode 100644 index 000000000000..1c51109a75db --- /dev/null +++ b/gnome-extra/guppi/guppi-0.40.0.ebuild @@ -0,0 +1,72 @@ +# 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/gnome-extra/guppi/guppi-0.40.0.ebuild,v 1.1 2001/11/04 04:54:54 azarah Exp $ + +P=Guppi-${PV} +S=${WORKDIR}/${P} +DESCRIPTION="GNOME Plottin Tool" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.bz2" +HOMEPAGE="http://www.gnome.org/guppi/" + +RDEPEND=">=x11-libs/gtk+-1.2.10-r3 + >=gnome-base/gnome-libs-1.4.1.2 + >=gnome-base/oaf-0.6.6 + >=gnome-base/libglade-0.16 + >=gnome-base/gnome-print-0.31 + >=media-libs/gdk-pixbuf-0.13 + >=dev-util/guile-1.4 + bonobo? ( >=gnome-base/bonobo-1.0.9-r1 )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + >=dev-util/intltool-0.11 + python? ( >=dev-lang/python-2.0 )" + + +src_compile() { + + local myconf + + if [ "`use bonobo`" ] + then + myconf="--enable-bonobo" + else + myconf="--disable-bonobo" + fi + + if [ "`use python`" ] + then + myconf="${myconf} --enable-python" + else + myconf="${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 + + CFLAGS="${CFLAGS} `gnome-config --cflags libglade`" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + make || die # Doesn't work with -j 4 (hallski) +} + +src_install() { + + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} |