blob: 33af0a8c0affa7e3481e3940ef4bf287611cd3db (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.2.4.ebuild,v 1.3 2004/12/14 19:15:34 slarti Exp $
DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
HOMEPAGE="http://msmtp.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
IUSE="ssl gnutls sasl"
DEPEND="virtual/libc
dev-util/pkgconfig
ssl? (
gnutls? ( >=net-libs/gnutls-1.0.0 )
!gnutls? ( >=dev-libs/openssl-0.9.6 )
)
sasl? ( virtual/gsasl )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64"
src_compile () {
local myconf
if use ssl && use gnutls ; then
myconf="${myconf} --enable-ssl --with-ssl=gnutls"
elif use ssl && ! use gnutls ; then
myconf="${myconf} --enable-ssl --with-ssl=openssl"
else
myconf="${myconf} --disable-ssl"
fi
econf \
$(use_enable sasl) \
${myconf} \
|| die "configure failed"
emake || die "make failed"
}
src_install () {
make DESTDIR=${D} install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS \
doc/msmtprc.example doc/Mutt+msmtp.txt || die "dodoc failed"
}
|