diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-13 22:30:27 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-13 22:30:27 +0000 |
commit | 07a26e7eae36455e484ec5b962477a5901111d5f (patch) | |
tree | b116c00876dd81bb88f5e336e9fea3e812217022 /media-libs/imlib | |
parent | New ebuild kindly submitted by Stefan Briesenick <sbriesen@gmx.de>. Closes bu... (diff) | |
download | historical-07a26e7eae36455e484ec5b962477a5901111d5f.tar.gz historical-07a26e7eae36455e484ec5b962477a5901111d5f.tar.bz2 historical-07a26e7eae36455e484ec5b962477a5901111d5f.zip |
fix use invocation
Diffstat (limited to 'media-libs/imlib')
-rw-r--r-- | media-libs/imlib/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/imlib/imlib-1.9.14-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/media-libs/imlib/ChangeLog b/media-libs/imlib/ChangeLog index 2a570c955b10..22f15faee569 100644 --- a/media-libs/imlib/ChangeLog +++ b/media-libs/imlib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/imlib # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib/ChangeLog,v 1.20 2004/08/12 16:55:28 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib/ChangeLog,v 1.21 2004/08/13 22:30:27 mr_bones_ Exp $ + + 13 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> imlib-1.9.14-r1.ebuild: + fix use invocation 12 Aug 2004; Hanno Boeck <hanno@gentoo.org> imlib-1.9.14-r1.ebuild: No gtk-dep if USE="-gtk" is set. diff --git a/media-libs/imlib/imlib-1.9.14-r1.ebuild b/media-libs/imlib/imlib-1.9.14-r1.ebuild index 0577f639e6db..894dee89b443 100644 --- a/media-libs/imlib/imlib-1.9.14-r1.ebuild +++ b/media-libs/imlib/imlib-1.9.14-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib/imlib-1.9.14-r1.ebuild,v 1.27 2004/08/12 16:55:28 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib/imlib-1.9.14-r1.ebuild,v 1.28 2004/08/13 22:30:27 mr_bones_ Exp $ inherit gnome.org libtool @@ -27,7 +27,7 @@ src_unpack() { } src_compile() { - [ `use gtk` ] || econf_args="--with-gtk-prefix=/dev/null --disable-gtktest" + use gtk || econf_args="--with-gtk-prefix=/dev/null --disable-gtktest" elibtoolize econf --sysconfdir=/etc/imlib ${econf_args} || die emake || die |