diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-01-27 16:45:59 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-01-27 16:45:59 +0000 |
commit | abdeb0f76f1fc8beedeb0aba8e3acfae77b6c812 (patch) | |
tree | 937a525d3d90c72e65df2df381250dd8bf49b419 /gnome-extra/guppi | |
parent | add libGL.la for libtool support (diff) | |
download | gentoo-2-abdeb0f76f1fc8beedeb0aba8e3acfae77b6c812.tar.gz gentoo-2-abdeb0f76f1fc8beedeb0aba8e3acfae77b6c812.tar.bz2 gentoo-2-abdeb0f76f1fc8beedeb0aba8e3acfae77b6c812.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/files/digest-guppi-0.40.2 | 1 | ||||
-rw-r--r-- | gnome-extra/guppi/files/digest-guppi-0.40.3 | 1 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.0.ebuild | 73 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.2.ebuild | 75 | ||||
-rw-r--r-- | gnome-extra/guppi/guppi-0.40.3.ebuild | 78 |
6 files changed, 79 insertions, 150 deletions
diff --git a/gnome-extra/guppi/files/digest-guppi-0.40.0 b/gnome-extra/guppi/files/digest-guppi-0.40.0 deleted file mode 100644 index 8c25993b4eb7..000000000000 --- a/gnome-extra/guppi/files/digest-guppi-0.40.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 907d7f2e4e94825c1c98a4a312b0e065 Guppi-0.40.0.tar.bz2 1073152 diff --git a/gnome-extra/guppi/files/digest-guppi-0.40.2 b/gnome-extra/guppi/files/digest-guppi-0.40.2 deleted file mode 100644 index 31355f01a8b7..000000000000 --- a/gnome-extra/guppi/files/digest-guppi-0.40.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 04a8d686f8d0a2fdeab80afcf1d0d478 Guppi-0.40.2.tar.bz2 1085440 diff --git a/gnome-extra/guppi/files/digest-guppi-0.40.3 b/gnome-extra/guppi/files/digest-guppi-0.40.3 new file mode 100644 index 000000000000..cd7bef90dabe --- /dev/null +++ b/gnome-extra/guppi/files/digest-guppi-0.40.3 @@ -0,0 +1 @@ +MD5 26ec6eb5b6fe7fb4e32ecff64d4f1b16 Guppi-0.40.3.tar.bz2 1024000 diff --git a/gnome-extra/guppi/guppi-0.40.0.ebuild b/gnome-extra/guppi/guppi-0.40.0.ebuild deleted file mode 100644 index d53b31ebfee7..000000000000 --- a/gnome-extra/guppi/guppi-0.40.0.ebuild +++ /dev/null @@ -1,73 +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> -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.0.ebuild,v 1.2 2001/11/10 13:54:53 hallski Exp $ - -PN=Guppi -P=${PN}-${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 -} diff --git a/gnome-extra/guppi/guppi-0.40.2.ebuild b/gnome-extra/guppi/guppi-0.40.2.ebuild deleted file mode 100644 index cb998193fa4a..000000000000 --- a/gnome-extra/guppi/guppi-0.40.2.ebuild +++ /dev/null @@ -1,75 +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> -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.2.ebuild,v 1.1 2001/11/21 20:20:17 azarah Exp $ - -PN=Guppi -P=${PN}-${PV} -S=${WORKDIR}/${P} -DESCRIPTION="GNOME Plottin Tool" -# ftp.gnome.org is slooow in updating ;/ -SRC_URI="ftp://ftp.yggdrasil.com/mirrors/site/ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.bz2 - 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.7 - >=gnome-base/libglade-0.17 - >=gnome-base/gnome-print-0.31 - >=media-libs/gdk-pixbuf-0.13 - >=dev-util/guile-1.4 - bonobo? ( >=gnome-base/bonobo-1.0.17 )" - -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 -} diff --git a/gnome-extra/guppi/guppi-0.40.3.ebuild b/gnome-extra/guppi/guppi-0.40.3.ebuild new file mode 100644 index 000000000000..2134e0bf860d --- /dev/null +++ b/gnome-extra/guppi/guppi-0.40.3.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/guppi/guppi-0.40.3.ebuild,v 1.1 2002/01/27 16:45:59 azarah Exp $ + + +MY_P=${P/guppi/Guppi} +S=${WORKDIR}/${MY_P} +DESCRIPTION="GNOME Plottin Tool" +# ftp.gnome.org is slooow in updating ;/ +SRC_URI="ftp://ftp.yggdrasil.com/mirrors/site/ftp.gnome.org/pub/GNOME/stable/sources/Guppi/${MY_P}.tar.bz2 + ftp://ftp.gnome.org/pub/GNOME/stable/sources/Guppi/${MY_P}.tar.bz2" +HOMEPAGE="http://www.gnome.org/guppi/" + +RDEPEND=">=sys-apps/portage-1.8.4 + >=x11-libs/gtk+-1.2.10-r3 + >=gnome-base/gnome-libs-1.4.1.2 + >=gnome-base/oaf-0.6.7 + >=gnome-base/libglade-0.17 + >=gnome-base/gnome-print-0.31 + >=media-libs/gdk-pixbuf-0.13 + >=dev-util/guile-1.5 + >=gnome-base/bonobo-1.0.17" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + >=dev-util/intltool-0.11 + python? ( >=dev-lang/python-2.0 )" + +src_compile() { + + local myconf + + 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} -DGUPPI_USING_NEWER_GUILE `gnome-config --cflags libglade`" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --with-bonobo \ + ${myconf} || die + + # The python 'generate' module opens some files in rw mode for some + # unknown reason. + addwrite "/usr/lib/python2.0/" + addwrite "/usr/lib/python2.1/" + addwrite "/usr/lib/python2.2/" + + emake || die +} + +src_install() { + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} |