diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-05 15:55:56 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-05 15:55:56 +0000 |
commit | 385cdecec0751363daa07058a7d3a1b46150b344 (patch) | |
tree | 48ec930980d4ea2ebfef0653569212bbd7b4294d /dev-util/glade | |
parent | *** empty log message *** (diff) | |
download | historical-385cdecec0751363daa07058a7d3a1b46150b344.tar.gz historical-385cdecec0751363daa07058a7d3a1b46150b344.tar.bz2 historical-385cdecec0751363daa07058a7d3a1b46150b344.zip |
Update (required for gnome-db)
Diffstat (limited to 'dev-util/glade')
-rw-r--r-- | dev-util/glade/glade-0.6.2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-util/glade/glade-0.6.2.ebuild b/dev-util/glade/glade-0.6.2.ebuild new file mode 100644 index 000000000000..deb6f9bc06c5 --- /dev/null +++ b/dev-util/glade/glade-0.6.2.ebuild @@ -0,0 +1,47 @@ +# 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/dev-util/glade/glade-0.6.2.ebuild,v 1.1 2001/05/05 15:55:56 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="glade" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/glade/"${A} +HOMEPAGE="http://www.gnome.org/" + +DEPEND=">=x11-libs/gtk+-1.2.8 + gnome? ( >=gnome-base/gnome-libs-1.2.8 + >=gnome-office/gnome-db-0.2.0 )" + +src_compile() { + cd ${S} + local myopts + if [ -n "`use gnome`" ] + then + echo "Using Gnome" + myopts="--prefix=/opt/gnome --without-bonobo" + else + myopts="--prefix=/usr/X11R6 --disable-gnome" + fi + try ./configure --host=${CHOST} ${myopts} + # bonobo support does not work with 0.28 requires around 0.18 + try make +} + +src_install() { + cd ${S} + local myopts + if [ -n "`use gnome`" ] + then + try make prefix=${D}/opt/gnome install + else + try make prefix=${D}/usr/X11R6 install + fi + dodoc AUTHORS COPYING* FAQ NEWS + dodoc README* TODO +} + + + + + |