summaryrefslogtreecommitdiff
blob: 81856775c75ecd756dcd02172e14accebca93cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Server Team <server@gentoo.org>
# Author: Achim Gottinger <achim@gentoo.org>, Daniel Robbins <drobbins@gentoo.org>, Anonymous
# $Header: /var/cvsroot/gentoo-x86/net-mail/mutt/mutt-1.3.22.ebuild,v 1.1 2001/09/20 19:42:16 drobbins Exp $

S=${WORKDIR}/${P}
DESCRIPTION="a small but very powerful text-based mail client"
SRC_URI="ftp://ftp.mutt.org/pub/mutt/mutt-1.3.22i.tar.gz"
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
	./configure --prefix=/usr --sysconfdir=/etc/mutt --host=${CHOST} --with-regex  --enable-pop --enable-imap --enable-nfs-fix --with-homespool=Maildir $myconf || die
	cp doc/Makefile doc/Makefile.orig
	sed 's/README.UPGRADE//' doc/Makefile.orig > doc/Makefile
	make || die
}

src_install () {
	cd ${S}
	make DESTDIR=${D} install || die
	dodir /usr/share/doc/${PVF}
    mv ${D}/usr/doc/mutt/* ${D}/usr/share/doc/${PVF}
    mv ${D}/usr/man ${D}/usr/share
	rm -rf ${D}/usr/doc/mutt
    gzip ${D}/usr/share/doc/${PVF}/html/*
    gzip ${D}/usr/share/doc/${PVF}/samples/*
    gzip ${D}/usr/share/doc/${PVF}/*
	insinto /etc/mutt
	doins ${FILESDIR}/Muttrc*
}