mail-mta/opensmtpd: remove ancient version
authorJason A. Donenfeld <zx2c4@gentoo.org>
Fri, 2 Oct 2015 12:58:45 +0000 (14:58 +0200)
committerJason A. Donenfeld <zx2c4@gentoo.org>
Fri, 2 Oct 2015 12:59:04 +0000 (14:59 +0200)
Package-Manager: portage-2.2.20.1

mail-mta/opensmtpd/Manifest
mail-mta/opensmtpd/opensmtpd-5.4.6.201506112227_p1.ebuild [deleted file]

index 7e33322c56ee4d03103619c2756dfb1c60b724be..1e736f27bab7740823a01ef64db4cbf8d245cd35 100644 (file)
@@ -1,2 +1 @@
-DIST opensmtpd-201506112227p1.tar.gz 706259 SHA256 f938796d2655f554e695adff6a3f3bbc4b1326912327b98acc7e29f705b9cf63 SHA512 f1724c1f2233dc43f4e5db780e12cfbaa7237dfbd0f70b30237c5d7bf2eed370ef6ed1f3d674473fc34d42fca6bb13e3d1152f29d16e29c7c9f86db6071713fb WHIRLPOOL f7454975f256ef50d085774516805227c1dfc4129e57290dca4cb8484fd0b8e6df45a74c6f5c9704461d5f558f50cf3795700313d6394f8d9b61fe95dd8b692b
 DIST opensmtpd-5.7.2p1.tar.gz 708991 SHA256 daae044488d456b33aa9c84ebcc79aef2f9ab2d17ebe0c0f09e41e1f4b60d992 SHA512 ef9487ba38711fd2a4076022c8fef89c4daf0aac346a72814a9c17f20f830bcd3cba4d85da53867cbc726d2c10fd6773c907ae533e0e022165d7f4aa3bdf1260 WHIRLPOOL 3d5d3fff0f15b898219af62eb4152666120d60d528f3afa99d347be0fcdd58b9fe36694471cd4485d51041de53ee6249f4510e5a0af254794fe7465b8642cd44
diff --git a/mail-mta/opensmtpd/opensmtpd-5.4.6.201506112227_p1.ebuild b/mail-mta/opensmtpd/opensmtpd-5.4.6.201506112227_p1.ebuild
deleted file mode 100644 (file)
index 7b2cdcc..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit multilib user flag-o-matic eutils pam toolchain-funcs autotools systemd versionator
-
-DESCRIPTION="Lightweight but featured SMTP daemon from OpenBSD"
-HOMEPAGE="http://www.opensmtpd.org/"
-MY_P="${P}"
-if [ $(get_last_version_component_index) -eq 4 ]; then
-       MY_P="${PN}-$(get_version_component_range 4-)"
-fi
-SRC_URI="https://www.opensmtpd.org/archives/${MY_P/_}.tar.gz"
-
-LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="pam +mta"
-
-DEPEND="dev-libs/openssl
-               sys-libs/zlib
-               pam? ( virtual/pam )
-               sys-libs/db
-               dev-libs/libevent
-               app-misc/ca-certificates
-               net-mail/mailbase
-               net-libs/libasr
-               !mail-mta/courier
-               !mail-mta/esmtp
-               !mail-mta/exim
-               !mail-mta/mini-qmail
-               !mail-mta/msmtp[mta]
-               !mail-mta/netqmail
-               !mail-mta/nullmailer
-               !mail-mta/postfix
-               !mail-mta/qmail-ldap
-               !mail-mta/sendmail
-               !mail-mta/ssmtp[mta]
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P/_}
-
-src_prepare() {
-       epatch_user
-       eautoreconf
-}
-
-src_configure() {
-       tc-export AR
-       AR="$(which "$AR")" econf \
-               --with-privsep-user=smtpd \
-               --with-queue-user=smtpq \
-               --with-privsep-path=/var/empty \
-               --with-sock-dir=/var/run \
-               --sysconfdir=/etc/opensmtpd \
-               --with-ca-file=/etc/ssl/certs/ca-certificates.crt \
-               $(use_with pam)
-}
-
-src_install() {
-       default
-       newinitd "${FILESDIR}"/smtpd.initd smtpd
-       systemd_dounit "${FILESDIR}"/smtpd.{service,socket}
-       use pam && newpamd "${FILESDIR}"/smtpd.pam smtpd
-       if use mta ; then
-               dodir /usr/sbin
-               dosym /usr/sbin/smtpctl /usr/sbin/sendmail
-               dosym /usr/sbin/smtpctl /usr/bin/sendmail
-               dosym /usr/sbin/smtpctl /usr/$(get_libdir)/sendmail
-       fi
-}
-
-pkg_preinst() {
-       enewgroup smtpd 25
-       enewuser smtpd 25 -1 /var/empty smtpd
-       enewgroup smtpq 252
-       enewuser smtpq 252 -1 /var/empty smtpq
-}
-
-pkg_postinst() {
-       einfo
-       einfo "Plugins for SQLite, MySQL, PostgreSQL, LDAP, socketmaps,"
-       einfo "Redis, and many other useful addons and filters are"
-       einfo "available in the mail-filter/opensmtpd-extras package."
-       einfo
-}