diff options
author | 2003-04-23 16:17:08 +0000 | |
---|---|---|
committer | 2003-04-23 16:17:08 +0000 | |
commit | c542d1de8df85309d78a0e9a6b83dc7c3273fe86 (patch) | |
tree | 53d7c5a3ae720b5c8d123d4db74f0cd910ceab9d /dev-util/glade/glade-0.6.4.ebuild | |
parent | re-add patch (diff) | |
download | gentoo-2-c542d1de8df85309d78a0e9a6b83dc7c3273fe86.tar.gz gentoo-2-c542d1de8df85309d78a0e9a6b83dc7c3273fe86.tar.bz2 gentoo-2-c542d1de8df85309d78a0e9a6b83dc7c3273fe86.zip |
touchups
Diffstat (limited to 'dev-util/glade/glade-0.6.4.ebuild')
-rw-r--r-- | dev-util/glade/glade-0.6.4.ebuild | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/dev-util/glade/glade-0.6.4.ebuild b/dev-util/glade/glade-0.6.4.ebuild index 02b122cfacaa..7493df3cfa00 100644 --- a/dev-util/glade/glade-0.6.4.ebuild +++ b/dev-util/glade/glade-0.6.4.ebuild @@ -1,19 +1,17 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-0.6.4.ebuild,v 1.11 2003/04/12 18:06:03 foser Exp $ - -IUSE="nls gnome bonobo" +# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-0.6.4.ebuild,v 1.12 2003/04/23 16:17:08 vapier Exp $ inherit eutils -S=${WORKDIR}/${P} -DESCRIPTION="glade - GUI designer for GTK+/GNOME-1" +DESCRIPTION="GUI designer for GTK+/GNOME-1" SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/glade/${P}.tar.gz" HOMEPAGE="http://glade.gnome.org/" SLOT="1" LICENSE="GPL-2" -KEYWORDS="x86 sparc ppc" +KEYWORDS="x86 ppc sparc" +IUSE="nls gnome bonobo" DEPEND="=x11-libs/gtk+-1.2* gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 ) @@ -25,25 +23,14 @@ RDEPEND="${RDEPEND} >=app-text/scrollkeeper-0.2" src_compile() { - local myconf - epatch ${FILESDIR}/${P}-autogen.sh.patch - use gnome || myconf="--disable-gnome" - - use bonobo \ - && myconf="${myconf} --with-bonobo" \ - || myconf="${myconf} --without-bonobo" - - use nls || myconf="${myconf} --disable-nls" - - if [ "$DEBUG" ] - then - myconf="${myconf} --enable-debug" - fi - econf \ --disable-gnome-db \ + `use_enable gnome` \ + `use_with bonobo` + `use_enable nls` \ + `use_enable debug` \ ${myconf} || die emake || die @@ -51,6 +38,5 @@ src_compile() { src_install() { einstall || die - dodoc AUTHORS COPYING* FAQ NEWS README* TODO } |