diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-08-11 22:57:29 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-08-11 22:57:29 +0000 |
commit | 57771c45e7a521e40b001011965e72240d0d2c46 (patch) | |
tree | 31a03a1acdbe3811b324b6656ec7d8766c57943c /mail-client/mutt/mutt-1.5.8-r2.ebuild | |
parent | remove old ebuilds (diff) | |
download | gentoo-2-57771c45e7a521e40b001011965e72240d0d2c46.tar.gz gentoo-2-57771c45e7a521e40b001011965e72240d0d2c46.tar.bz2 gentoo-2-57771c45e7a521e40b001011965e72240d0d2c46.zip |
Move imap warning to pkg_setup. Mention quick start guide in pkg_postinst
#77315
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'mail-client/mutt/mutt-1.5.8-r2.ebuild')
-rw-r--r-- | mail-client/mutt/mutt-1.5.8-r2.ebuild | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/mail-client/mutt/mutt-1.5.8-r2.ebuild b/mail-client/mutt/mutt-1.5.8-r2.ebuild index d7e117b5770f..a6ce1e70fe6b 100644 --- a/mail-client/mutt/mutt-1.5.8-r2.ebuild +++ b/mail-client/mutt/mutt-1.5.8-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.8-r2.ebuild,v 1.9 2005/08/06 23:33:39 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.8-r2.ebuild,v 1.10 2005/08/11 22:57:29 agriffis Exp $ inherit eutils flag-o-matic IUSE="cjk ssl nls slang crypt imap mbox nntp sasl buffysize vanilla" @@ -44,6 +44,15 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="alpha amd64 hppa ia64 mips ppc ~ppc-macos ppc64 sparc x86" +pkg_setup() { + if ! use imap; then + echo + einfo "NOTE: The USE variable 'imap' is not in your USE flags." + einfo "For imap support in mutt, you will need to restart the build with USE=imap" + echo + fi +} + src_unpack() { unpack ${P}i.tar.gz && cd ${S} || die "unpack failed" if ! use vanilla; then @@ -147,3 +156,10 @@ src_install() { dodoc BEWARE COPYRIGHT ChangeLog NEWS OPS* PATCHES README* TODO VERSION } + +pkg_postinst() { + echo + einfo "For information about using mutt, please refer to:" + einfo " http://www.gentoo.org/doc/en/guide-to-mutt.xml" + echo +} |