summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2011-07-25 13:32:10 +0000
committerEray Aslan <eras@gentoo.org>2011-07-25 13:32:10 +0000
commite5b28387ac758f73ac6031762aa4217b9679f5f8 (patch)
treec2664ee22b133518726e20c4f291bffc316a90b2 /mail-mta
parentremove old (diff)
downloadgentoo-2-e5b28387ac758f73ac6031762aa4217b9679f5f8.tar.gz
gentoo-2-e5b28387ac758f73ac6031762aa4217b9679f5f8.tar.bz2
gentoo-2-e5b28387ac758f73ac6031762aa4217b9679f5f8.zip
remove old
(Portage version: 2.1.10.7/cvs/Linux x86_64)
Diffstat (limited to 'mail-mta')
-rw-r--r--mail-mta/ssmtp/ChangeLog5
-rw-r--r--mail-mta/ssmtp/ssmtp-2.64-r1.ebuild102
2 files changed, 4 insertions, 103 deletions
diff --git a/mail-mta/ssmtp/ChangeLog b/mail-mta/ssmtp/ChangeLog
index b208df7755c7..5920763e5c81 100644
--- a/mail-mta/ssmtp/ChangeLog
+++ b/mail-mta/ssmtp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/ssmtp
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ChangeLog,v 1.119 2011/07/17 22:30:05 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ChangeLog,v 1.120 2011/07/25 13:32:10 eras Exp $
+
+ 25 Jul 2011; Eray Aslan <eras@gentoo.org> -ssmtp-2.64-r1.ebuild:
+ remove old
17 Jul 2011; Mark Loeser <halcy0n@gentoo.org> ssmtp-2.64-r2.ebuild:
Stable for ppc64; bug #370649
diff --git a/mail-mta/ssmtp/ssmtp-2.64-r1.ebuild b/mail-mta/ssmtp/ssmtp-2.64-r1.ebuild
deleted file mode 100644
index 894f0aba05a4..000000000000
--- a/mail-mta/ssmtp/ssmtp-2.64-r1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ssmtp-2.64-r1.ebuild,v 1.2 2011/03/28 09:21:43 eras Exp $
-
-EAPI="3"
-
-PATCHSET=2
-
-WANT_AUTOMAKE=none
-
-inherit eutils autotools
-
-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
- http://dev.gentoo.org/~flameeyes/ssmtp/${P}-patches-${PATCHSET}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="ipv6 ssl gnutls"
-
-DEPEND="ssl? (
- !gnutls? ( dev-libs/openssl )
- gnutls? ( net-libs/gnutls )
- )"
-RDEPEND="${DEPEND}
- net-mail/mailbase
- !net-mail/mailwrapper
- !mail-mta/courier
- !mail-mta/esmtp
- !mail-mta/exim
- !mail-mta/mini-qmail
- !mail-mta/msmtp
- !mail-mta/nbsmtp
- !mail-mta/netqmail
- !mail-mta/nullmailer
- !mail-mta/postfix
- !mail-mta/qmail-ldap
- !mail-mta/sendmail"
-
-pkg_setup() {
- enewgroup ssmtp
-}
-
-src_prepare() {
- EPATCH_SUFFIX="patch" EPATCH_SOURCE="${WORKDIR}/patches" \
- epatch
-
- 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 || die
-}
-
-src_install() {
- dosbin ssmtp || die
-
- doman ssmtp.8 ssmtp.conf.5 || die
- dodoc ChangeLog CHANGELOG_OLD INSTALL README TLS || die
- newdoc ssmtp.lsm DESC || die
-
- insinto /etc/ssmtp
- doins ssmtp.conf revaliases || die
-
- 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.
- fowners root:ssmtp /etc/ssmtp/ssmtp.conf
- fperms 640 /etc/ssmtp/ssmtp.conf
-
- fowners root:ssmtp /usr/sbin/ssmtp
- fperms 2711 /usr/sbin/ssmtp
-
- dosym ../sbin/ssmtp /usr/lib/sendmail || die
- dosym ../sbin/ssmtp /usr/bin/sendmail || die
- dosym ssmtp /usr/sbin/sendmail || die
- dosym ../sbin/ssmtp /usr/bin/mailq || die
- dosym ../sbin/ssmtp /usr/bin/newaliases || die
-}