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
commit7463bdf5f4b6f31a8e16d1f627c3eee82b0d428a (patch)
tree2f074f0f14de2bf53f76f97ee7754cb5b6ae0b8c /net-mail/mutt/mutt-1.4-r3.ebuild
parentAdded ppc keyword to 0.91 (diff)
downloadhistorical-7463bdf5f4b6f31a8e16d1f627c3eee82b0d428a.tar.gz
historical-7463bdf5f4b6f31a8e16d1f627c3eee82b0d428a.tar.bz2
historical-7463bdf5f4b6f31a8e16d1f627c3eee82b0d428a.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/mutt/mutt-1.4-r3.ebuild')
-rw-r--r--net-mail/mutt/mutt-1.4-r3.ebuild9
1 files changed, 7 insertions, 2 deletions
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
}