diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2020-02-24 20:18:11 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-02-24 20:18:43 +0300 |
commit | 676efc9aa36244ee36367283ab4daa472c211403 (patch) | |
tree | af335ace91b5c95dc9c8476b0d5f17862f787739 /mail-mta/ssmtp/ssmtp-2.64-r2.ebuild | |
parent | dev-libs/libgit2: Fix boolean args (diff) | |
download | gentoo-676efc9aa36244ee36367283ab4daa472c211403.tar.gz gentoo-676efc9aa36244ee36367283ab4daa472c211403.tar.bz2 gentoo-676efc9aa36244ee36367283ab4daa472c211403.zip |
mail-mta/ssmtp: Drop old
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'mail-mta/ssmtp/ssmtp-2.64-r2.ebuild')
-rw-r--r-- | mail-mta/ssmtp/ssmtp-2.64-r2.ebuild | 116 |
1 files changed, 0 insertions, 116 deletions
diff --git a/mail-mta/ssmtp/ssmtp-2.64-r2.ebuild b/mail-mta/ssmtp/ssmtp-2.64-r2.ebuild deleted file mode 100644 index 4bfc4613b3c0..000000000000 --- a/mail-mta/ssmtp/ssmtp-2.64-r2.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -PATCHSET=3 - -WANT_AUTOMAKE=none - -inherit eutils autotools user - -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.bz2 - https://dev.gentoo.org/~flameeyes/ssmtp/${P}-patches-${PATCHSET}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="ipv6 +ssl gnutls +mta" - -DEPEND="ssl? ( - !gnutls? ( dev-libs/openssl:0 ) - gnutls? ( net-libs/gnutls[openssl] ) - )" -RDEPEND="${DEPEND} - net-mail/mailbase - mta? ( - !net-mail/mailwrapper - !mail-mta/courier - !mail-mta/esmtp - !mail-mta/exim - !mail-mta/mini-qmail - !mail-mta/msmtp[mta] - !mail-mta/nbsmtp - !mail-mta/netqmail - !mail-mta/nullmailer - !mail-mta/postfix - !mail-mta/qmail-ldap - !mail-mta/sendmail - !mail-mta/opensmtpd - )" - -REQUIRED_USE="gnutls? ( ssl )" - -pkg_setup() { - if ! use prefix; then - enewgroup ssmtp - fi -} - -src_prepare() { - EPATCH_SUFFIX="patch" EPATCH_SOURCE="${WORKDIR}/patches" \ - epatch - epatch_user - - # let's start by not using configure.in anymore as future autoconf - # versions will not support it. - mv configure.in configure.ac || die - - eautoconf -} - -src_configure() { - econf \ - --sysconfdir="${EPREFIX}"/etc/ssmtp \ - $(use_enable ssl) $(use_with gnutls) \ - $(use_enable ipv6 inet6) \ - --enable-md5auth -} - -src_compile() { - emake etcdir="${EPREFIX}"/etc -} - -src_install() { - dosbin ssmtp - - doman ssmtp.8 ssmtp.conf.5 - dodoc ChangeLog CHANGELOG_OLD INSTALL README TLS - newdoc ssmtp.lsm DESC - - insinto /etc/ssmtp - doins ssmtp.conf revaliases - - local conffile="${ED}etc/ssmtp/ssmtp.conf" - - # Sorry about the weird indentation, I couldn't figure out a cleverer way - # to do this without having horribly >80 char lines. - sed -i -e "s:^hostname=:\n# Gentoo bug #47562\\ -# Commenting the following line will force ssmtp to figure\\ -# out the hostname itself.\n\\ -# hostname=:" \ - "${conffile}" || die "sed failed" - - # Comment rewriteDomain (bug #243364) - sed -i -e "s:^rewriteDomain=:#rewriteDomain=:" "${conffile}" - - # Set restrictive perms on ssmtp.conf as per #187841, #239197 - # Protect the ssmtp configfile from being readable by regular users as it - # may contain login/password data to auth against a the mailhub used. - if ! use prefix; then - fowners root:ssmtp /etc/ssmtp/ssmtp.conf - fperms 640 /etc/ssmtp/ssmtp.conf - fowners root:ssmtp /usr/sbin/ssmtp - fperms 2711 /usr/sbin/ssmtp - fi - - if use mta; then - dosym ../sbin/ssmtp /usr/lib/sendmail - dosym ../sbin/ssmtp /usr/bin/sendmail - dosym ssmtp /usr/sbin/sendmail - dosym ../sbin/ssmtp /usr/bin/mailq - dosym ../sbin/ssmtp /usr/bin/newaliases - fi -} |