summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-10 20:22:26 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-10 20:22:26 +0000
commit8e08165002fa9d202be229aafb19ff96ec5da2a5 (patch)
tree33668c9c31aa79c9548694bfb3b031b4ba28533f /net-libs/libvncserver
parentand stable arm follows ;) (diff)
downloadhistorical-8e08165002fa9d202be229aafb19ff96ec5da2a5.tar.gz
historical-8e08165002fa9d202be229aafb19ff96ec5da2a5.tar.bz2
historical-8e08165002fa9d202be229aafb19ff96ec5da2a5.zip
Fix use invocation
Diffstat (limited to 'net-libs/libvncserver')
-rw-r--r--net-libs/libvncserver/ChangeLog7
-rw-r--r--net-libs/libvncserver/libvncserver-0.6.ebuild6
2 files changed, 8 insertions, 5 deletions
diff --git a/net-libs/libvncserver/ChangeLog b/net-libs/libvncserver/ChangeLog
index 421ce21ab78c..fdd92913a3ea 100644
--- a/net-libs/libvncserver/ChangeLog
+++ b/net-libs/libvncserver/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libvncserver
-# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.3 2004/01/02 02:39:00 vapier Exp $
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.4 2004/06/10 20:19:44 agriffis Exp $
+
+ 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> libvncserver-0.6.ebuild:
+ Fix use invocation
*libvncserver-0.6 (01 Jan 2003)
diff --git a/net-libs/libvncserver/libvncserver-0.6.ebuild b/net-libs/libvncserver/libvncserver-0.6.ebuild
index d9fd8ba481cf..133d7a177b6b 100644
--- a/net-libs/libvncserver/libvncserver-0.6.ebuild
+++ b/net-libs/libvncserver/libvncserver-0.6.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/net-libs/libvncserver/libvncserver-0.6.ebuild,v 1.3 2004/04/05 05:10:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.6.ebuild,v 1.4 2004/06/10 20:19:44 agriffis Exp $
inherit eutils
@@ -31,10 +31,10 @@ src_unpack() {
src_compile() {
local myconf=""
- [ `use nobackchannel` ] \
+ use nobackchannel \
&& myconf="${myconf} --without-backchannel" \
|| myconf="${myconf} --with-backchannel"
- [ `use no24bpp` ] \
+ use no24bpp \
&& myconf="${myconf} --without-24bpp" \
|| myconf="${myconf} --with-24bpp"
econf \