blob: 0ed96f5520050c4982c8a38bbc9a940431833e5a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.21.ebuild,v 1.3 2010/07/31 22:03:29 hwoarang Exp $
EAPI=2
inherit eutils
DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
HOMEPAGE="http://msmtp.sourceforge.net/"
SRC_URI="mirror://sourceforge/msmtp/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc gnome-keyring gnutls idn mailwrapper nls sasl ssl +mta"
DEPEND="idn? ( net-dns/libidn )
nls? ( virtual/libintl )
gnome-keyring? ( gnome-base/gnome-keyring )
gnutls? ( >=net-libs/gnutls-1.2.0 )
!gnutls? ( ssl? ( >=dev-libs/openssl-0.9.6 ) )
sasl? ( >=virtual/gsasl-0.2.4 )"
RDEPEND="${DEPEND}
mta? (
!mailwrapper? ( !virtual/mta )
mailwrapper? ( >=net-mail/mailwrapper-0.2 )
)"
DEPEND="${DEPEND}
nls? ( sys-devel/gettext )
dev-util/pkgconfig"
PROVIDE="mta? ( virtual/mta )"
src_configure() {
local myconf
if use gnutls ; then
myconf="--with-ssl=gnutls"
elif use ssl ; then
myconf="--with-ssl=openssl"
else
myconf="--with-ssl=no"
fi
econf \
$(use_with idn libidn) \
$(use_with sasl libgsasl) \
$(use_with gnome-keyring ) \
$(use_enable nls) \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
if use mta; then
if use mailwrapper ; then
insinto /etc/mail
doins "${FILESDIR}"/mailer.conf
else
dodir /usr/sbin
dosym /usr/bin/msmtp /usr/sbin/sendmail || die "dosym failed"
fi
fi
dodoc AUTHORS ChangeLog NEWS README THANKS \
doc/{Mutt+msmtp.txt,msmtprc*} || die "dodoc failed"
if use doc ; then
dohtml doc/msmtp.html || die "dohtml failed"
dodoc doc/msmtp.pdf
fi
#d=msmtpqueue
#local msmtpqueue=/usr/share/${PN}/$d
#insinto ${msmtpqueue}
#exeinto ${msmtpqueue}
#doexe scripts/msmtpqueue/*.sh || die "doexe failed"
#for i in ChangeLog README ; do
# newdoc scripts/msmtpqueue/$i msmtpqueue.$i \
# || die "dodoc scripts/msmtpqueue/$i failed"
#done
#d=msmtpq
#local msmtpq=/usr/share/${PN}/$d
#insinto ${msmtpqueue}
#exeinto ${msmtpqueue}
#i=README
#newdoc scripts/$d/$i $d.$i \
# || die "dodoc scripts/$d/$i failed"
src_install_contrib msmtpqueue "*.sh" "README ChangeLog"
src_install_contrib msmtpq "msmtpq msmtpQ" "README"
}
src_install_contrib() {
subdir="$1"
bins="$2"
docs="$3"
local dir=/usr/share/${PN}/$subdir
insinto ${dir}
exeinto ${dir}
for i in $bins ; do
doexe scripts/$subdir/$i || die "doexe $subdir/$i failed"
done
for i in $docs ; do
newdoc scripts/$subdir/$i $subdir.$i \
|| die "dodoc $subdir/$i failed"
done
}
|