diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 02:25:47 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 02:25:47 +0000 |
commit | e7d4270a72ff0ad37427b8186aee9f79a998c2c2 (patch) | |
tree | 811521edb440a62d8875ab5934c191f55a055e61 /x11-misc/linuxwacom | |
parent | QA - fix use invocation, get rid of subshells that break error handling (Mani... (diff) | |
download | gentoo-2-e7d4270a72ff0ad37427b8186aee9f79a998c2c2.tar.gz gentoo-2-e7d4270a72ff0ad37427b8186aee9f79a998c2c2.tar.bz2 gentoo-2-e7d4270a72ff0ad37427b8186aee9f79a998c2c2.zip |
QA - fix use invocation
Diffstat (limited to 'x11-misc/linuxwacom')
-rw-r--r-- | x11-misc/linuxwacom/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/linuxwacom/linuxwacom-0.6.2.ebuild | 8 | ||||
-rw-r--r-- | x11-misc/linuxwacom/linuxwacom-0.6.3.ebuild | 8 |
3 files changed, 13 insertions, 9 deletions
diff --git a/x11-misc/linuxwacom/ChangeLog b/x11-misc/linuxwacom/ChangeLog index 8cdc632eceb5..cc094e3b1dcb 100644 --- a/x11-misc/linuxwacom/ChangeLog +++ b/x11-misc/linuxwacom/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/linuxwacom # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/linuxwacom/ChangeLog,v 1.10 2004/06/11 08:45:57 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/linuxwacom/ChangeLog,v 1.11 2004/06/24 02:23:34 agriffis Exp $ + + 23 Jun 2004; Aron Griffis <agriffis@gentoo.org> linuxwacom-0.6.2.ebuild, + linuxwacom-0.6.3.ebuild: + QA - fix use invocation 11 Jun 2004; Donnie Berkholz <spyderous@gentoo.org>; linuxwacom-0.6.2.ebuild, linuxwacom-0.6.3.ebuild: diff --git a/x11-misc/linuxwacom/linuxwacom-0.6.2.ebuild b/x11-misc/linuxwacom/linuxwacom-0.6.2.ebuild index 1da0da34d894..9e84823cd24a 100644 --- a/x11-misc/linuxwacom/linuxwacom-0.6.2.ebuild +++ b/x11-misc/linuxwacom/linuxwacom-0.6.2.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/x11-misc/linuxwacom/linuxwacom-0.6.2.ebuild,v 1.6 2004/06/11 08:45:57 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/linuxwacom/linuxwacom-0.6.2.ebuild,v 1.7 2004/06/24 02:23:34 agriffis Exp $ DESCRIPTION="Input driver for Wacom tablets and drawing devices" HOMEPAGE="http://linuxwacom.sourceforge.net/" @@ -60,9 +60,9 @@ src_unpack() { } src_compile() { - if [ `use gtk` ]; + if use gtk; then - if [ `use gtk2` ]; + if use gtk2; then withgtk="--with-gtk=2.0" else @@ -71,7 +71,7 @@ src_compile() { else withgtk="--with-gtk=no" fi - if [ `use tcltk` ]; + if use tcltk; then withtcltk="--with-tcl --with-tk" else diff --git a/x11-misc/linuxwacom/linuxwacom-0.6.3.ebuild b/x11-misc/linuxwacom/linuxwacom-0.6.3.ebuild index 63e437f4f9f2..aa95e0290966 100644 --- a/x11-misc/linuxwacom/linuxwacom-0.6.3.ebuild +++ b/x11-misc/linuxwacom/linuxwacom-0.6.3.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/x11-misc/linuxwacom/linuxwacom-0.6.3.ebuild,v 1.3 2004/06/11 08:45:57 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/linuxwacom/linuxwacom-0.6.3.ebuild,v 1.4 2004/06/24 02:23:34 agriffis Exp $ DESCRIPTION="Input driver for Wacom tablets and drawing devices" HOMEPAGE="http://linuxwacom.sourceforge.net/" @@ -60,9 +60,9 @@ src_unpack() { } src_compile() { - if [ `use gtk` ]; + if use gtk; then - if [ `use gtk2` ]; + if use gtk2; then withgtk="--with-gtk=2.0" else @@ -71,7 +71,7 @@ src_compile() { else withgtk="--with-gtk=no" fi - if [ `use tcltk` ]; + if use tcltk; then withtcltk="--with-tcl --with-tk" else |