blob: de6b1d2e4790fe4e54438bce051021b1a3447fd7 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild,v 1.3 2006/10/22 00:37:52 ticho Exp $
inherit eutils mailer
DESCRIPTION="Extremely simple MTA to get mail off the system to a Mailhub"
HOMEPAGE="ftp://ftp.debian.org/debian/pool/main/s/ssmtp/"
SRC_URI="mirror://debian/pool/main/s/ssmtp/${P/-/_}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="ssl ipv6 md5sum"
DEPEND="virtual/libc
ssl? ( dev-libs/openssl )"
src_compile() {
# Respect LDFLAGS (bug #152197)
sed -i -e 's:$(CC) -o:$(CC) @LDFLAGS@ -o:' Makefile.in
econf \
--sysconfdir=/etc/ssmtp \
$(use_enable ssl) \
$(use_enable ipv6 inet6) \
$(use_enable md5sum md5auth) \
|| die
make clean || die
make etcdir=/etc || die
}
src_install() {
dodir /usr/bin /usr/sbin /usr/lib
dosbin ssmtp || die
fperms 755 /usr/sbin/ssmtp
doman ssmtp.8
dodoc INSTALL README TLS CHANGELOG_OLD
newdoc ssmtp.lsm DESC
insinto /etc/ssmtp
doins ssmtp.conf revaliases
local conffile="${D}/etc/ssmtp/ssmtp.conf"
mv "${conffile}" "${conffile}.orig"
# Sorry about the weird indentation, I couldn't figure out a cleverer way
# to do this without having horribly >80 char lines.
sed -e "s:^hostname=:\n# Gentoo bug #47562\\
# Commenting the following line will force ssmtp to figure\\
# out the hostname itself.\n\\
# hostname=:" "${conffile}.orig" \
> "${conffile}" \
|| die "sed failed"
if use mailwrapper ; then
dosym /usr/sbin/ssmtp /usr/bin/sendmail.ssmtp
mailer_install_conf
else
dosym /usr/sbin/ssmtp /usr/lib/sendmail
dosym /usr/sbin/ssmtp /usr/bin/sendmail
dosym /usr/sbin/ssmtp /usr/bin/mailq
dosym /usr/sbin/ssmtp /usr/bin/newaliases
fi
}
|