summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-10 16:58:24 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-10 16:58:24 +0000
commit3bf4173c0a0238f9d24369baf36335dde54d8a7d (patch)
tree6c4081974aa3be81334e261df8c3e42957f99f99
parentMerging in changes made to bootstrap.sh recently. (diff)
downloadgentoo-2-3bf4173c0a0238f9d24369baf36335dde54d8a7d.tar.gz
gentoo-2-3bf4173c0a0238f9d24369baf36335dde54d8a7d.tar.bz2
gentoo-2-3bf4173c0a0238f9d24369baf36335dde54d8a7d.zip
Fix use invocation
-rw-r--r--net-ftp/vsftpd/ChangeLog6
-rw-r--r--net-ftp/vsftpd/vsftpd-1.2.0-r1.ebuild4
-rw-r--r--net-ftp/vsftpd/vsftpd-1.2.1.ebuild4
-rw-r--r--net-im/amsn/ChangeLog6
-rw-r--r--net-im/amsn/amsn-0.83.ebuild8
-rw-r--r--net-im/amsn/amsn-0.90.ebuild12
-rw-r--r--net-im/gaim/ChangeLog5
-rw-r--r--net-im/gaim/gaim-0.75-r10.ebuild4
8 files changed, 30 insertions, 19 deletions
diff --git a/net-ftp/vsftpd/ChangeLog b/net-ftp/vsftpd/ChangeLog
index d891af27c554..e12665514f9a 100644
--- a/net-ftp/vsftpd/ChangeLog
+++ b/net-ftp/vsftpd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-ftp/vsftpd
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/ChangeLog,v 1.32 2004/06/05 20:05:56 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/ChangeLog,v 1.33 2004/06/10 16:54:07 agriffis Exp $
+
+ 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> vsftpd-1.2.0-r1.ebuild,
+ vsftpd-1.2.1.ebuild:
+ Fix use invocation
05 Jun 2004; Michael Hanselmann <hansmi@gentoo.org> vsftpd-1.2.1.ebuild:
Added ~ppc to KEYWORDS.
diff --git a/net-ftp/vsftpd/vsftpd-1.2.0-r1.ebuild b/net-ftp/vsftpd/vsftpd-1.2.0-r1.ebuild
index 5435fcc68244..8cc8ad44f676 100644
--- a/net-ftp/vsftpd/vsftpd-1.2.0-r1.ebuild
+++ b/net-ftp/vsftpd/vsftpd-1.2.0-r1.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-ftp/vsftpd/vsftpd-1.2.0-r1.ebuild,v 1.6 2004/03/30 22:04:29 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/vsftpd-1.2.0-r1.ebuild,v 1.7 2004/06/10 16:54:07 agriffis Exp $
inherit flag-o-matic eutils
@@ -54,7 +54,7 @@ src_install() {
# for running vsftpd from xinetd
insinto /etc/xinetd.d
- if [ ! -n `use ipv6` ]; then
+ if ! use ipv6; then
newins ${FILESDIR}/vsftpd.xinetd.ipv6 vsftpd
else
newins ${FILESDIR}/vsftpd.xinetd vsftpd
diff --git a/net-ftp/vsftpd/vsftpd-1.2.1.ebuild b/net-ftp/vsftpd/vsftpd-1.2.1.ebuild
index 46b6b714f854..b8bcaba073c2 100644
--- a/net-ftp/vsftpd/vsftpd-1.2.1.ebuild
+++ b/net-ftp/vsftpd/vsftpd-1.2.1.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-ftp/vsftpd/vsftpd-1.2.1.ebuild,v 1.10 2004/06/05 20:05:56 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/vsftpd-1.2.1.ebuild,v 1.11 2004/06/10 16:54:07 agriffis Exp $
inherit flag-o-matic eutils
@@ -54,7 +54,7 @@ src_install() {
# for running vsftpd from xinetd
insinto /etc/xinetd.d
- if [ ! -n `use ipv6` ]; then
+ if ! use ipv6; then
newins ${FILESDIR}/vsftpd.xinetd.ipv6 vsftpd
else
newins ${FILESDIR}/vsftpd.xinetd vsftpd
diff --git a/net-im/amsn/ChangeLog b/net-im/amsn/ChangeLog
index 6ee6dd2a33fc..925ff13ad80f 100644
--- a/net-im/amsn/ChangeLog
+++ b/net-im/amsn/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-im/amsn
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.31 2004/05/31 00:14:14 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/ChangeLog,v 1.32 2004/06/10 16:54:52 agriffis Exp $
+
+ 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> amsn-0.83.ebuild,
+ amsn-0.90.ebuild:
+ Fix use invocation
*amsn-0.92 (31 May 2004)
diff --git a/net-im/amsn/amsn-0.83.ebuild b/net-im/amsn/amsn-0.83.ebuild
index e985218a048d..c4fc57a70178 100644
--- a/net-im/amsn/amsn-0.83.ebuild
+++ b/net-im/amsn/amsn-0.83.ebuild
@@ -21,7 +21,7 @@ DEPEND=">=dev-lang/tcl-8.3.3
src_compile() {
- if [ -n "`use imlib`" ]
+ if use imlib
then
einfo "Compiling the freedesktop notification plugin"
cd ${S}/plugins/traydock
@@ -37,7 +37,7 @@ src_install() {
# Remove all CVS crap
find ${D} -type d -name CVS -exec rm -rf {} \;
- if [ -n "`use gnome`" ]
+ if use gnome
then
dodir /usr/share/applications
cp ${FILESDIR}/amsn.desktop ${D}/usr/share/applications
@@ -47,7 +47,7 @@ src_install() {
fi
- if [ -n "`use kde`" ]
+ if use kde
then
dodir ${D}/usr/share/applnk
cp ${FILESDIR}/amsn.desktop ${D}/usr/share/applnk/
@@ -56,7 +56,7 @@ src_install() {
cp -a ${S}/icons/* ${D}/${KDEDIR}/share/icons/default.kde
fi
- if [ -n "`use imlib`" ]
+ if use imlib
then
einfo "Installing the freedesktop notification plugin"
dodir /usr/lib/amsn/plugins/traydock
diff --git a/net-im/amsn/amsn-0.90.ebuild b/net-im/amsn/amsn-0.90.ebuild
index 52ae60ac17b4..2e3c430a7aac 100644
--- a/net-im/amsn/amsn-0.90.ebuild
+++ b/net-im/amsn/amsn-0.90.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-im/amsn/amsn-0.90.ebuild,v 1.10 2004/04/27 19:44:07 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.90.ebuild,v 1.11 2004/06/10 16:54:52 agriffis Exp $
S="${WORKDIR}/msn"
DESCRIPTION="Alvaro's Messenger client for MSN"
@@ -31,7 +31,7 @@ src_unpack() {
src_compile() {
- if [ -n "`use imlib`" ]
+ if use imlib
then
einfo "Compiling the freedesktop notification plugin"
cd ${S}/plugins/traydock
@@ -47,7 +47,7 @@ src_install() {
# Remove all CVS extra stuff
find ${D} -type d -name CVS -exec rm -rf {} \;
- if [ -n "`use gnome`" ]
+ if use gnome
then
dodir /usr/share/applications
cp ${D}/usr/share/amsn/amsn.desktop ${D}/usr/share/applications
@@ -57,7 +57,7 @@ src_install() {
fi
- if [ -n "`use kde`" ]
+ if use kde
then
dodir /usr/share/applnk/Internet
cp ${D}/usr/share/amsn/amsn.desktop ${D}/usr/share/applnk/Internet/
@@ -66,7 +66,7 @@ src_install() {
cp -a ${S}/icons/* ${D}/${KDEDIR}/share/icons/default.kde
fi
- if [ -n "`use imlib`" ]
+ if use imlib
then
einfo "Installing the freedesktop notification plugin"
dodir /usr/lib/amsn/plugins/traydock
@@ -83,7 +83,7 @@ src_install() {
dodoc TODO README FAQ
}
pkg_postinst() {
- if [ -n "`use xmms`" ]
+ if use xmms
then
einfo "For XMMS use in amsn, make sure the xmms-infopipe plugin is enabled."
fi
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog
index 21f0ee313557..9c7f5a6b6a70 100644
--- a/net-im/gaim/ChangeLog
+++ b/net-im/gaim/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-im/gaim
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.187 2004/06/09 18:53:55 rizzo Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.188 2004/06/10 16:58:24 agriffis Exp $
+
+ 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> gaim-0.75-r10.ebuild:
+ Fix use invocation
*gaim-0.78-r2 (09 Jun 2004)
diff --git a/net-im/gaim/gaim-0.75-r10.ebuild b/net-im/gaim/gaim-0.75-r10.ebuild
index e8ce7330a087..72e513277f29 100644
--- a/net-im/gaim/gaim-0.75-r10.ebuild
+++ b/net-im/gaim/gaim-0.75-r10.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-im/gaim/gaim-0.75-r10.ebuild,v 1.13 2004/04/30 20:57:38 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-0.75-r10.ebuild,v 1.14 2004/06/10 16:58:24 agriffis Exp $
inherit flag-o-matic eutils gcc
use debug && inherit debug
@@ -92,7 +92,7 @@ src_install() {
}
pkg_postinst() {
- if [ `use cjk` ]; then
+ if use cjk; then
ewarn
ewarn "You have chosen (by selecting 'USE=cjk') to compile with"
ewarn "a patch for CJK support. Please be aware that this patch"