blob: fd1086f056a698518782886011db9127b2b21ffc (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/ssmtp/ssmtp-2.60.3.ebuild,v 1.4 2003/07/09 20:22:54 raker Exp $
DESCRIPTION="Extremely simple MTA to get mail off the system to a Mailhub"
SRC_URI="ftp://ftp.es.debian.org/debian/pool/main/s/ssmtp/ssmtp_${PV}.tar.gz"
HOMEPAGE="ftp://ftp.es.debian.org/debian/pool/main/s/ssmtp/"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~arm ~mips"
LICENSE="GPL-2"
IUSE="ssl ipv6 md5sum"
DEPEND="virtual/glibc
ssl? ( dev-libs/openssl )"
RDEPEND="!virtual/mta
net-mail/mailbase
ssl? ( dev-libs/openssl )"
PROVIDE="virtual/mta"
S=${WORKDIR}/ssmtp-2.60
src_compile() {
local myconf
use ssl && ( epatch ${FILESDIR}/starttls.diff )
use ssl && myconf="${myconf} --enable-ssl"
use ipv6 && myconf="${myconf} --enable-inet6"
use md5sum && myconf="${myconf} --enable-md5suth"
econf \
--sysconfdir=/etc/ssmtp \
${myconf} || die
make clean || die
make etcdir=/etc || die
}
src_install() {
dodir /usr/bin /usr/sbin /usr/lib
dosbin ssmtp
chmod 755 ${D}/usr/sbin/ssmtp
dosym /usr/sbin/ssmtp /usr/bin/mailq
dosym /usr/sbin/ssmtp /usr/bin/newaliases
# Removed symlink due to conflict with mailx
# See bug #7448
#dosym /usr/sbin/ssmtp /usr/bin/mail
dosym /usr/sbin/ssmtp /usr/sbin/sendmail
dosym /usr/sbin/ssmtp /usr/lib/sendmail
doman ssmtp.8
dosym /usr/share/man/man8/ssmtp.8 /usr/share/man/man8/sendmail.8
dodoc INSTALL README TLS
newdoc ssmtp-2.60.lsm
insinto /etc/ssmtp
doins ssmtp.conf revaliases
# Set up config file
# See bug #22658
#local conffile="/etc/ssmtp/ssmtp.conf"
#local hostname=`hostname -f`
#local domainname=`hostname -d`
#mv ${conffile} ${conffile}.orig
#sed -e "s:rewriteDomain=:rewriteDomain=${domainname}:g" \
# -e "s:_HOSTNAME_:${hostname}:" \
# -e "s:^mailhub=mail:mailhub=mail.${domainname}:g" \
# ${conffile}.orig > ${conffile}.pre
#if [ `use ssl` ];
#then
# sed -e "s:^#UseTLS=YES:UseTLS=YES:g" \
# ${conffile}.pre > ${conffile}
# mv ${conffile}.pre ${conffile}.orig
#else
# mv ${conffile}.pre ${conffile}
#fi
}
|