summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-misc/lirc/ChangeLog5
-rw-r--r--app-misc/lirc/lirc-0.7.0_pre7.ebuild4
-rw-r--r--mail-mta/msmtp/ChangeLog5
-rw-r--r--mail-mta/msmtp/msmtp-1.2.1.ebuild8
4 files changed, 14 insertions, 8 deletions
diff --git a/app-misc/lirc/ChangeLog b/app-misc/lirc/ChangeLog
index 39dd3badccf0..8c8880d1d16b 100644
--- a/app-misc/lirc/ChangeLog
+++ b/app-misc/lirc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/lirc
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/ChangeLog,v 1.35 2004/08/03 18:42:21 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/ChangeLog,v 1.36 2004/08/03 19:32:52 mr_bones_ Exp $
+
+ 03 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> lirc-0.7.0_pre7.ebuild:
+ fix use invocation
03 Aug 2004; Heinrich Wendel <lanius@gentoo.org> lirc-0.7.0_pre7.ebuild:
don't use kmod if no modules are build, bug #59250
diff --git a/app-misc/lirc/lirc-0.7.0_pre7.ebuild b/app-misc/lirc/lirc-0.7.0_pre7.ebuild
index 401508990ca7..524290637c4d 100644
--- a/app-misc/lirc/lirc-0.7.0_pre7.ebuild
+++ b/app-misc/lirc/lirc-0.7.0_pre7.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/app-misc/lirc/lirc-0.7.0_pre7.ebuild,v 1.4 2004/08/03 18:42:21 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/lirc-0.7.0_pre7.ebuild,v 1.5 2004/08/03 19:32:52 mr_bones_ Exp $
inherit eutils kmod
@@ -101,7 +101,7 @@ src_install() {
newins ${FILESDIR}/xbox-lircd.conf lircd.conf
fi
- if [ `use doc` ]; then
+ if use doc ; then
dohtml doc/html/*.html
insinto /usr/share/doc/${PF}/images
doins doc/images/*
diff --git a/mail-mta/msmtp/ChangeLog b/mail-mta/msmtp/ChangeLog
index 7ad292ac9273..edd1d9ed195e 100644
--- a/mail-mta/msmtp/ChangeLog
+++ b/mail-mta/msmtp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/msmtp
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.9 2004/08/01 20:40:10 slarti Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.10 2004/08/03 19:34:49 mr_bones_ Exp $
+
+ 03 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> msmtp-1.2.1.ebuild:
+ fix use invocation
*msmtp-1.2.1 (01 Aug 2004)
diff --git a/mail-mta/msmtp/msmtp-1.2.1.ebuild b/mail-mta/msmtp/msmtp-1.2.1.ebuild
index 190413c3a243..e8eb7d3cf4ef 100644
--- a/mail-mta/msmtp/msmtp-1.2.1.ebuild
+++ b/mail-mta/msmtp/msmtp-1.2.1.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/mail-mta/msmtp/msmtp-1.2.1.ebuild,v 1.1 2004/08/01 20:40:10 slarti Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.2.1.ebuild,v 1.2 2004/08/03 19:34:49 mr_bones_ Exp $
DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
HOMEPAGE="http://msmtp.sourceforge.net/"
@@ -21,9 +21,9 @@ src_compile () {
&& myconf="${myconf} --enable-gsasl" \
|| myconf="${myconf} --disable-gsasl"
- if [[ `use ssl` && `use gnutls` ]]; then
+ if use ssl && use gnutls ; then
myconf="${myconf} --enable-ssl --with-ssl=gnutls"
- elif [[ `use ssl` && !`use gnutls` ]]; then
+ elif use ssl && ! use gnutls ; then
myconf="${myconf} --enable-ssl --with-ssl=openssl"
else
myconf="${myconf} --disable-ssl"
@@ -36,7 +36,7 @@ src_compile () {
src_install () {
einstall || die "install failed"
- if [[ !`use ssl` && `use gnutls` ]]; then
+ if ! use ssl && use gnutls ; then
ewarn " "
ewarn "gnutls support was not enabled (even though it was in your USE flags) as"
ewarn "ssl was not in them also."