diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-07 23:01:38 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-07 23:01:38 +0000 |
commit | 5677314e4b2fe35fbf7bf5a4224e4f7e77d70aa9 (patch) | |
tree | 26dbe36d8546be06c5a923e473ea168300ad111e /media-libs/smpeg | |
parent | 026 version bump (diff) | |
download | historical-5677314e4b2fe35fbf7bf5a4224e4f7e77d70aa9.tar.gz historical-5677314e4b2fe35fbf7bf5a4224e4f7e77d70aa9.tar.bz2 historical-5677314e4b2fe35fbf7bf5a4224e4f7e77d70aa9.zip |
Fix use invocation
Diffstat (limited to 'media-libs/smpeg')
-rw-r--r-- | media-libs/smpeg/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/smpeg/smpeg-0.4.4-r2.ebuild | 10 | ||||
-rw-r--r-- | media-libs/smpeg/smpeg-0.4.4-r4.ebuild | 10 |
3 files changed, 15 insertions, 11 deletions
diff --git a/media-libs/smpeg/ChangeLog b/media-libs/smpeg/ChangeLog index 17dc6c2f7cc4..7f48dc12238a 100644 --- a/media-libs/smpeg/ChangeLog +++ b/media-libs/smpeg/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/smpeg # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.13 2004/03/14 16:51:57 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.14 2004/06/07 22:58:18 agriffis Exp $ + + 07 Jun 2004; Aron Griffis <agriffis@gentoo.org> smpeg-0.4.4-r2.ebuild, + smpeg-0.4.4-r4.ebuild: + Fix use invocation 14 Mar 2004; Stephen P. Becker <geoman@gentoo.org> smpeg-0.4.4-r4.ebuild: Added ~mips keyword. diff --git a/media-libs/smpeg/smpeg-0.4.4-r2.ebuild b/media-libs/smpeg/smpeg-0.4.4-r2.ebuild index cbedc7571509..1a708b178546 100644 --- a/media-libs/smpeg/smpeg-0.4.4-r2.ebuild +++ b/media-libs/smpeg/smpeg-0.4.4-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r2.ebuild,v 1.13 2004/03/19 07:56:05 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r2.ebuild,v 1.14 2004/06/07 22:58:18 agriffis Exp $ IUSE="X gtk opengl" @@ -22,16 +22,16 @@ src_compile() { local myconf # --enable-mmx causes test apps to crash on startup .. smpeg bug? # bugzilla bug #470 -- azarah (03/02/2002) -# if [ "`use mmx`" ] ; then +# if use mmx ; then # myconf="--enable-mmx" # fi - if [ -z "`use gtk`" ] ; then + if ! use gtk ; then myconf="${myconf} --disable-gtk-player" fi - if [ -z "`use X`" ] ; then + if ! use X ; then myconf="${myconf} --disable-gtk-player --without-x" fi - if [ -z "`use opengl`" ] ; then + if ! use opengl ; then myconf="${myconf} --disable-opengl-player" fi diff --git a/media-libs/smpeg/smpeg-0.4.4-r4.ebuild b/media-libs/smpeg/smpeg-0.4.4-r4.ebuild index 8ae111944e2d..50b25ad3a14f 100644 --- a/media-libs/smpeg/smpeg-0.4.4-r4.ebuild +++ b/media-libs/smpeg/smpeg-0.4.4-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r4.ebuild,v 1.12 2004/03/14 16:51:57 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r4.ebuild,v 1.13 2004/06/07 22:58:18 agriffis Exp $ DESCRIPTION="SDL MPEG Player Library" HOMEPAGE="http://www.lokigames.com/development/smpeg.php3" @@ -29,16 +29,16 @@ src_compile() { local myconf # --enable-mmx causes test apps to crash on startup .. smpeg bug? # bugzilla bug #470 -- azarah (03/02/2002) -# if [ "`use mmx`" ] ; then +# if use mmx ; then # myconf="--enable-mmx" # fi - if [ -z "`use gtk`" ] ; then + if ! use gtk ; then myconf="${myconf} --disable-gtk-player" fi - if [ -z "`use X`" ] ; then + if ! use X ; then myconf="${myconf} --disable-gtk-player --without-x" fi - if [ -z "`use opengl`" ] ; then + if ! use opengl ; then myconf="${myconf} --disable-opengl-player" fi |