summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalum Selkirk <cselkirk@gentoo.org>2002-11-17 13:22:49 +0000
committerCalum Selkirk <cselkirk@gentoo.org>2002-11-17 13:22:49 +0000
commitf97465a11efd45ea9879f9abc4fb59188d155bbb (patch)
tree8405261a073a36312b9459634b7db70cd119d03f /net-mail
parentAdded ppc keyword to 0.91 (diff)
downloadgentoo-2-f97465a11efd45ea9879f9abc4fb59188d155bbb.tar.gz
gentoo-2-f97465a11efd45ea9879f9abc4fb59188d155bbb.tar.bz2
gentoo-2-f97465a11efd45ea9879f9abc4fb59188d155bbb.zip
Changed the ebuild not to install an /etc/Muttrc if USE="mbox" is defined. "mbox" is the default behavior with mutt.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mutt/ChangeLog7
-rw-r--r--net-mail/mutt/mutt-1.4-r3.ebuild9
2 files changed, 13 insertions, 3 deletions
diff --git a/net-mail/mutt/ChangeLog b/net-mail/mutt/ChangeLog
index 8abe8e12f24a..0091f1506522 100644
--- a/net-mail/mutt/ChangeLog
+++ b/net-mail/mutt/ChangeLog
@@ -1,9 +1,14 @@
# ChangeLog for net-mail/mutt
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/ChangeLog,v 1.11 2002/10/22 19:01:19 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/ChangeLog,v 1.12 2002/11/17 13:22:49 cselkirk Exp $
*mutt-1.4-r3 (03 Sept 2002)
+ 16 Nov 2002; Calum Selkirk <cselkirk@gentoo.org> mutt-1.4-r3.ebuild :
+
+ Changed the ebuild not to install an /etc/Muttrc if USE="mbox" is defined.
+ "mbox" is the default behavior with mutt.
+
22 Oct 2002; Seemant Kulleen <seemant@gentoo.org> mutt-1.4-r3.ebuild :
SRC_URI fix by: jeffthorsett@hotmail.com (Jeff Thorsett) in bug #9503.
diff --git a/net-mail/mutt/mutt-1.4-r3.ebuild b/net-mail/mutt/mutt-1.4-r3.ebuild
index fe8b28bd96e1..2dbad44fcbb9 100644
--- a/net-mail/mutt/mutt-1.4-r3.ebuild
+++ b/net-mail/mutt/mutt-1.4-r3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.4-r3.ebuild,v 1.4 2002/10/22 19:01:19 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.4-r3.ebuild,v 1.5 2002/11/17 13:22:49 cselkirk Exp $
IUSE="ssl nls slang cjk"
@@ -70,7 +70,12 @@ src_install () {
make DESTDIR=$D install || die
find $D/usr/share/doc -type f |grep -v html | xargs gzip
insinto /etc/mutt
- doins $FILESDIR/Muttrc
+ if [ "`use mbox`" ]; then
+ echo "Not installing an /etc/Muttrc as mbox is default configuration"
+ echo "with mutt"
+ else
+ doins $FILESDIR/Muttrc
+ fi
dodoc BEWARE COPYRIGHT ChangeLog NEWS OPS* PATCHES README* TODO VERSION
}