diff options
author | Greg Fitzgerald <gregf@gentoo.org> | 2003-11-20 00:10:52 +0000 |
---|---|---|
committer | Greg Fitzgerald <gregf@gentoo.org> | 2003-11-20 00:10:52 +0000 |
commit | fe0cfc216ac8d4295e2b6c4dc1e6e886958c90b4 (patch) | |
tree | b99e08ce295369246ed36f1ff159e8b9f25f165f /net-mail/mutt | |
parent | Version Bump. (diff) | |
download | historical-fe0cfc216ac8d4295e2b6c4dc1e6e886958c90b4.tar.gz historical-fe0cfc216ac8d4295e2b6c4dc1e6e886958c90b4.tar.bz2 historical-fe0cfc216ac8d4295e2b6c4dc1e6e886958c90b4.zip |
Version Bump.
Diffstat (limited to 'net-mail/mutt')
-rw-r--r-- | net-mail/mutt/Manifest | 4 | ||||
-rw-r--r-- | net-mail/mutt/mutt-1.5.5.1.ebuild | 96 |
2 files changed, 98 insertions, 2 deletions
diff --git a/net-mail/mutt/Manifest b/net-mail/mutt/Manifest index a721924031eb..d82237ad8d1f 100644 --- a/net-mail/mutt/Manifest +++ b/net-mail/mutt/Manifest @@ -1,10 +1,10 @@ -MD5 23082d9069200981fe6f09e5ca567428 ChangeLog 5844 +MD5 8b5c184a07b5d724a74f09aadef4f6a2 ChangeLog 5840 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 MD5 cba349632c50f968aef647f38e208575 mutt-1.4.1-r1.ebuild 2689 MD5 bb3ba98f0fb69ff14e29e1f63917b378 mutt-1.4.1.ebuild 2510 MD5 73746f7932d88176e35342688604b14a mutt-1.5.4-r1.ebuild 2843 MD5 a3b34d7f3a0833be1ab6807382fd8f1f mutt-1.5.4.ebuild 2607 -MD5 d76e4423a3bdd494c7efe1f05ee3a410 mutt-1.5.5.1.ebuild 2657 +MD5 59f33879109b2886cd2bbc36dbac8f9b mutt-1.5.5.1.ebuild 2656 MD5 78c54f1f293cf702401021c22ca9992a files/Muttrc.color 1177 MD5 b2b515e96b060771a00646405c620755 files/Muttrc 678 MD5 b9367d01117783179ef5042bb2193d77 files/digest-mutt-1.4.1 280 diff --git a/net-mail/mutt/mutt-1.5.5.1.ebuild b/net-mail/mutt/mutt-1.5.5.1.ebuild new file mode 100644 index 000000000000..175f94d5f8e9 --- /dev/null +++ b/net-mail/mutt/mutt-1.5.5.1.ebuild @@ -0,0 +1,96 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.5.5.1.ebuild,v 1.1 2003/11/20 00:10:46 gregf Exp $ + +IUSE="ssl nls slang crypt imap mbox maildir" + +inherit eutils + +edit_threads="patch-1.5.3.cd.edit_threads.9.5" + +S=$WORKDIR/${P} +DESCRIPTION="a small but very powerful text-based mail client" +SRC_URI="ftp://ftp.mutt.org/mutt/devel/mutt-${PV}i.tar.gz + http://www.spinnaker.de/mutt/compressed/patch-${PV}.rr.compressed.1.gz + http://cedricduval.free.fr/download/mutt/${edit_threads}" +HOMEPAGE="http://www.mutt.org" + +DEPEND=">=sys-libs/ncurses-5.2 + ssl? ( >=dev-libs/openssl-0.9.6 ) + slang? ( >=sys-libs/slang-1.4.2 )" + +RDEPEND="nls? ( sys-devel/gettext )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~ia64" + +inherit flag-o-matic + +src_unpack() { + unpack ${P}i.tar.gz + + cd ${S} + epatch ${DISTDIR}/patch-${PV}.rr.compressed.1.gz + epatch ${DISTDIR}/${edit_threads} + +} + +src_compile() { + # See Bug #22787 + unset WANT_AUTOMAKE_2_5 + # See Bug #11170 + case ${ARCH} in + alpha|ppc) replace-flags "-O[3-9]" "-O2" ;; + esac + + local myconf + myconf="`use_enable nls` `use_with ssl` \ + `use_enable imap` `use_enable crypt pgp`" + + # --without-slang doesn't work; + # specify --with-curses if you don't want slang + # (26 Sep 2001 agriffis) + + use slang \ + && myconf="${myconf} --with-slang" \ + && ewarn "If you want transparent background, please merge mutt with USE=-slang." \ + || myconf="${myconf} --with-curses" + + use mbox \ + && myconf="${myconf} --with-maildir=/var/spool/mail" \ + || myconf="${myconf} --with-homespool=Maildir" + + use cjk && myconf="$myconf --enable-default-japanese" + + econf \ + --sysconfdir=/etc/mutt \ + --with-docdir=/usr/share/doc/mutt-$PVR \ + --with-regex --enable-pop --enable-nfs-fix \ + --disable-fcntl --enable-flock --enable-external-dotlock \ + --enable-compressed \ + --enable-imap-edit-threads \ + ${myconf} || die + + mv doc/Makefile doc/Makefile.orig + sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile + make || die "make failed (myconf=${myconf})" +} + +src_install() { + make DESTDIR=$D install || die + find $D/usr/share/doc -type f |grep -v "html\|manual" | xargs gzip + insinto /etc/mutt + if [ "`use mbox`" ]; then + einfo "Not installing an /etc/Muttrc as mbox is default configuration" + einfo "with mutt" + else + doins $FILESDIR/Muttrc + fi + + dodoc BEWARE COPYRIGHT ChangeLog NEWS OPS* PATCHES README* TODO VERSION +} +pkg_postinst() { + einfo "The USE variable 'imap' is not set by default on most architectures." + einfo "To enable imap support in mutt, make sure you have 'imap' set." +} |