diff options
author | 2000-07-30 00:18:15 +0000 | |
---|---|---|
committer | 2000-07-30 00:18:15 +0000 | |
commit | e71bd557504e873a15820db39ff76742a4104c5c (patch) | |
tree | f9de981da084908314d4ef3689728950bb86b6c4 /net-mail/mutt | |
parent | another test (diff) | |
download | gentoo-2-e71bd557504e873a15820db39ff76742a4104c5c.tar.gz gentoo-2-e71bd557504e873a15820db39ff76742a4104c5c.tar.bz2 gentoo-2-e71bd557504e873a15820db39ff76742a4104c5c.zip |
*** empty log message ***
Diffstat (limited to 'net-mail/mutt')
-rw-r--r-- | net-mail/mutt/mutt-1.2.5-1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-mail/mutt/mutt-1.2.5-1.ebuild b/net-mail/mutt/mutt-1.2.5-1.ebuild new file mode 100644 index 000000000000..06c108551bd3 --- /dev/null +++ b/net-mail/mutt/mutt-1.2.5-1.ebuild @@ -0,0 +1,39 @@ +# 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-1.ebuild,v 1.1 2000/07/30 00:18:15 achim Exp $ + +P=mutt-1.2.5-1 +A=mutt-1.2.5i.tar.gz +S=${WORKDIR}/mutt-1.2.5 +CATEGORY="net-mail" +DESCRIPTION="a small but very powerful text-based mail client" +SRC_URI="ftp://ftp.mutt.org/pub/mutt/${A}" +HOMEPAGE="http://" + + +src_compile() { + + cd ${S} + ./configure --prefix=/usr --sysconfdir=/etc/mutt --host=${CHOST} \ + --with-slang --with-regex --with-catgets \ + --enable-pop --enable-imap --with-ssl --enable-nfs-fix \ + --with-homespool=Maildir + make + +} + +src_install () { + + cd ${S} + 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}/* +} + + |