diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 20:25:59 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 20:25:59 +0000 |
commit | 3bbd197cd6f2406216a174a20ef71d7f1c9917d3 (patch) | |
tree | 7397098fca75608cf8f4e36247f6af5f2ffc32fd /net-mail/mutt | |
parent | Removed installation if /etd/init.d/alsa, since alsa-driver's (diff) | |
download | gentoo-2-3bbd197cd6f2406216a174a20ef71d7f1c9917d3.tar.gz gentoo-2-3bbd197cd6f2406216a174a20ef71d7f1c9917d3.tar.bz2 gentoo-2-3bbd197cd6f2406216a174a20ef71d7f1c9917d3.zip |
cleanup
Diffstat (limited to 'net-mail/mutt')
-rw-r--r-- | net-mail/mutt/files/digest-mutt-1.2.5-r2 | 1 | ||||
-rw-r--r-- | net-mail/mutt/mutt-1.2.5-r2.ebuild | 61 |
2 files changed, 0 insertions, 62 deletions
diff --git a/net-mail/mutt/files/digest-mutt-1.2.5-r2 b/net-mail/mutt/files/digest-mutt-1.2.5-r2 deleted file mode 100644 index 1c9c1bfc04d3..000000000000 --- a/net-mail/mutt/files/digest-mutt-1.2.5-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 0ba5367059abdd55daceb82dce6be42f mutt-1.2.5i.tar.gz 1973923 diff --git a/net-mail/mutt/mutt-1.2.5-r2.ebuild b/net-mail/mutt/mutt-1.2.5-r2.ebuild deleted file mode 100644 index 428c0a43acef..000000000000 --- a/net-mail/mutt/mutt-1.2.5-r2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.2.5-r2.ebuild,v 1.2 2001/05/30 18:24:34 achim Exp $ - -P=mutt-1.2.5-1 -A=mutt-1.2.5i.tar.gz -S=${WORKDIR}/mutt-1.2.5 -DESCRIPTION="a small but very powerful text-based mail client" -SRC_URI="ftp://ftp.mutt.org/pub/mutt/${A}" -HOMEPAGE="http://www.mutt.org" - -DEPEND="virtual/glibc - nls? ( sys-devel/gettext ) - >=sys-libs/ncurses-5.2 - slang? ( >=sys-libs/slang-1.4.2 ) - ssl? ( >=dev-libs/openssl-0.9.6 )" - -RDEPEND="virtual/glibc - >=sys-libs/ncurses-5.2 - slang? ( >=sys-libs/slang-1.4.2 ) - ssl? ( >=dev-libs/openssl-0.9.6 )" - -src_compile() { - - local myconf - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - if [ "`use ssl`" ] ; then - myconf="$myconf --with-ssl" - fi - if [ "`use slang`" ] ; then - myconf="$myconf --with-slang" - fi - - try ./configure --prefix=/usr --sysconfdir=/etc/mutt --host=${CHOST} \ - --with-regex --enable-pop --enable-imap --enable-nfs-fix \ - --with-homespool=Maildir $myconf - try make - -} - -src_install () { - - cd ${S} - try make DESTDIR=${D} install - prepman - dodir /usr/doc/${P} - mv ${D}/usr/doc/mutt/* ${D}/usr/doc/${P} - rm -rf ${D}/usr/doc/mutt - gzip ${D}/usr/doc/${P}/html/* - gzip ${D}/usr/doc/${P}/samples/* - gzip ${D}/usr/doc/${P}/* - insinto /etc/mutt - doins ${FILESDIR}/Muttrc* -} - - - - |