mail-mta/sendmail: Remove old
authorAndreas K. Huettel <dilfridge@gentoo.org>
Sun, 15 Mar 2020 19:02:49 +0000 (20:02 +0100)
committerAndreas K. Huettel <dilfridge@gentoo.org>
Sun, 15 Mar 2020 19:03:26 +0000 (20:03 +0100)
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andreas K. Huettel <dilfridge@gentoo.org>
mail-mta/sendmail/Manifest
mail-mta/sendmail/files/sendmail-8.14.5+db-5.0.patch [deleted file]
mail-mta/sendmail/sendmail-8.14.9.ebuild [deleted file]

index 7f705362d6c9ca537d23fdd4f2f02f0d369bef48..0134628b792a792b3083968e70d9c8104c829561 100644 (file)
@@ -1,2 +1 @@
-DIST sendmail.8.14.9.tar.gz 2114293 BLAKE2B 51c24478724a1dd87e3bbda0bf0e8c9c64bc8f36eaa624752eda50942520a4f19262d2c8cebbb0a02467bb3f49e1e7edd78a69f0327effa3834e4234b289f04c SHA512 a541fe687e9967fb87f2f6c6263ecc698aac42c6a52e81e7ee556f0c3d719b9c996dfccf10cc2e0e5c6d03dd8d3ce79b856b78ca049dd47665e38c77763fa424
 DIST sendmail.8.15.2.tar.gz 2207417 BLAKE2B 3d9dfb5bc2b535e30ef2fc61333e12a9b1fc45a5d730d2bed1ef956adb574721833f87aeba0475705b76e0c7d6cf00f9a10025bffb0de6c6b4dae606eb2ec399 SHA512 04feb37316c13b66b1518596507a7da7c16cb0bf1abf10367f7fd888a428fadb093a9efa55342fa55b936c3f0cbdc63b9e2505cd99201a69a0c05b8ad65f49f9
diff --git a/mail-mta/sendmail/files/sendmail-8.14.5+db-5.0.patch b/mail-mta/sendmail/files/sendmail-8.14.5+db-5.0.patch
deleted file mode 100644 (file)
index 99ecbe0..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: sendmail-8.14.4/include/sm/bdb.h
-===================================================================
---- sendmail-8.14.4.orig/include/sm/bdb.h
-+++ sendmail-8.14.4/include/sm/bdb.h
-@@ -19,7 +19,7 @@
- #  define DB_VERSION_MAJOR 1
- # endif /* ! DB_VERSION_MAJOR */
--# if DB_VERSION_MAJOR >= 4 && DB_VERSION_MINOR >= 1
-+# if (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) || DB_VERSION_MAJOR >= 5
- #  define DBTXN       NULL ,
diff --git a/mail-mta/sendmail/sendmail-8.14.9.ebuild b/mail-mta/sendmail/sendmail-8.14.9.ebuild
deleted file mode 100644 (file)
index 8454266..0000000
+++ /dev/null
@@ -1,202 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit eutils multilib systemd toolchain-funcs user
-
-DESCRIPTION="Widely-used Mail Transport Agent (MTA)"
-HOMEPAGE="http://www.sendmail.org/"
-SRC_URI="ftp://ftp.sendmail.org/pub/${PN}/${PN}.${PV}.tar.gz"
-
-LICENSE="Sendmail GPL-2" # GPL-2 is here for initscript
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
-IUSE="ssl ldap sasl tcpd mbox ipv6 nis sockets"
-
-DEPEND="net-mail/mailbase
-       sys-devel/m4
-       sasl? ( >=dev-libs/cyrus-sasl-2.1.10 )
-       tcpd? ( sys-apps/tcp-wrappers )
-       ssl? ( dev-libs/openssl:0= )
-       ldap? ( net-nds/openldap )
-       >=sys-libs/db-3.2
-       !net-mail/vacation
-       "
-RDEPEND="${DEPEND}
-       >=net-mail/mailbase-0.00
-       !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/opensmtpd
-       !mail-mta/qmail-ldap
-       !<mail-mta/ssmtp-2.64-r2
-       !>=mail-mta/ssmtp-2.64-r2[mta]"
-
-PDEPEND="!mbox? ( mail-filter/procmail )"
-
-# libmilter library is part of sendmail, but it does not share the version number with it.
-# In order to find the right libmilter version number, check SMFI_VERSION definition
-# that can be found in ${S}/include/libmilter/mfapi.h (see also SM_LM_VRS_* defines).
-# For example, version 1.0.1 has a SMFI_VERSION of 0x01000001.
-LIBMILTER_VER=1.0.2
-
-pkg_setup() {
-       enewgroup smmsp 209
-       enewuser smmsp 209 -1 /var/spool/mqueue smmsp
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/"${PN}"-8.14.6-build-system.patch
-       epatch "${FILESDIR}"/sendmail-delivered_hdr.patch
-       epatch "${FILESDIR}"/libmilter-sharedlib.patch
-       epatch "${FILESDIR}"/"${PN}"-8.14.5+db-5.0.patch
-       epatch "${FILESDIR}"/sendmail-starttls-multi-crl.patch
-
-       local confCC="$(tc-getCC)"
-       local confCCOPTS="${CFLAGS}"
-       local confLDOPTS="${LDFLAGS}"
-       local confMAPDEF="-DMAP_REGEX"
-       local conf_sendmail_LIBS=""
-       use sasl && confLIBS="${confLIBS} -lsasl2"  \
-               && confENVDEF="${confENVDEF} -DSASL=2" \
-               && confCCOPTS="${confCCOPTS} -I/usr/include/sasl" \
-               && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lsasl2"
-       use tcpd && confENVDEF="${confENVDEF} -DTCPWRAPPERS" \
-               && confLIBS="${confLIBS} -lwrap"
-       use ssl && confENVDEF="${confENVDEF} -DSTARTTLS -D_FFR_DEAL_WITH_ERROR_SSL" \
-               && confENVDEF="${confENVDEF} -D_FFR_TLS_1" \
-               && confLIBS="${confLIBS} -lssl -lcrypto" \
-               && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto"
-       use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \
-               && confLIBS="${confLIBS} -lldap -llber"
-       use ipv6 && confENVDEF="${confENVDEF} -DNETINET6"
-       use nis && confENVDEF="${confENVDEF} -DNIS"
-       use sockets && confENVDEF="${confENVDEF} -DSOCKETMAP"
-       sed -e "s:@@confCCOPTS@@:${confCCOPTS}:" \
-               -e "s/@@confLDOPTS@@/${confLDOPTS}/" \
-               -e "s/@@confCC@@/${confCC}/" \
-               -e "s/@@confMAPDEF@@/${confMAPDEF}/" \
-               -e "s/@@confENVDEF@@/${confENVDEF}/" \
-               -e "s/@@confLIBS@@/${confLIBS}/" \
-               -e "s/@@conf_sendmail_LIBS@@/${conf_sendmail_LIBS}/" \
-               "${FILESDIR}"/site.config.m4 > devtools/Site/site.config.m4
-}
-
-src_compile() {
-       sh Build AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" || die "compilation failed in main Build script"
-       pushd libmilter
-       sh Build AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" MILTER_SOVER=${LIBMILTER_VER} || die "libmilter compilation failed"
-       popd
-}
-
-src_install() {
-       local MY_LIBDIR=/usr/$(get_libdir)
-       local MY_OBJDIR="obj.`uname -s`.`uname -r`.`uname -m`"
-       dodir /usr/bin ${MY_LIBDIR} /usr/include/libmilter
-       dodir /usr/share/man/man{1,5,8} /usr/sbin /var/log /usr/share/sendmail-cf
-       dodir /var/spool/{mqueue,clientmqueue} /etc/conf.d
-       keepdir /var/spool/{clientmqueue,mqueue}
-       for dir in libsmutil sendmail mailstats praliases smrsh makemap vacation editmap
-       do
-               make DESTDIR="${D}" LIBDIR="${MY_LIBDIR}" MANROOT=/usr/share/man/man \
-                       SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
-                       MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
-                       LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
-                       MSPQOWN=root CFOWN=root CFGRP=root \
-                       install -C "${MY_OBJDIR}/${dir}" \
-                       || die "install failed"
-       done
-       for dir in rmail mail.local
-       do
-               make DESTDIR="${D}" LIBDIR="${MY_LIBDIR}" MANROOT=/usr/share/man/man \
-                       SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
-                       MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
-                       LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
-                       MSPQOWN=root CFOWN=root CFGRP=root \
-                       force-install -C "${MY_OBJDIR}/${dir}" \
-                       || die "install failed"
-       done
-
-       make DESTDIR="${D}" LIBDIR="${MY_LIBDIR}" MANROOT=/usr/share/man/man \
-               SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
-               MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
-               LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
-               MSPQOWN=root CFOWN=root CFGRP=root \
-               MILTER_SOVER=${LIBMILTER_VER} \
-               install -C "${MY_OBJDIR}/libmilter" \
-               || die "install failed"
-
-       fowners root:smmsp /usr/sbin/sendmail
-       fperms 2555 /usr/sbin/sendmail
-       fowners smmsp:smmsp /var/spool/clientmqueue
-       fperms 770 /var/spool/clientmqueue
-       fperms 700 /var/spool/mqueue
-       dosym /usr/sbin/makemap /usr/bin/makemap
-       dodoc FAQ KNOWNBUGS README RELEASE_NOTES doc/op/op.ps
-       newdoc sendmail/README README.sendmail
-       newdoc sendmail/SECURITY SECURITY
-       newdoc sendmail/TUNING TUNING
-       newdoc smrsh/README README.smrsh
-       newdoc libmilter/README README.libmilter
-
-       newdoc cf/README README.cf
-       newdoc cf/cf/README README.install-cf
-       cp -pPR cf/* "${D}"/usr/share/sendmail-cf
-
-       docinto contrib
-       dodoc contrib/*
-
-       insinto /etc/mail
-       if use mbox
-       then
-               newins "${FILESDIR}"/sendmail.mc-r1 sendmail.mc
-       else
-               newins "${FILESDIR}"/sendmail-procmail.mc sendmail.mc
-       fi
-       m4 "${D}"/usr/share/sendmail-cf/m4/cf.m4 "${D}"/etc/mail/sendmail.mc \
-               > "${D}"/etc/mail/sendmail.cf
-       echo "include(\`/usr/share/sendmail-cf/m4/cf.m4')dnl" \
-               > "${D}"/etc/mail/submit.mc
-       cat "${D}"/usr/share/sendmail-cf/cf/submit.mc >> "${D}"/etc/mail/submit.mc
-       echo "# local-host-names - include all aliases for your machine here" \
-               > "${D}"/etc/mail/local-host-names
-       cat <<- EOF > "${D}"/etc/mail/trusted-users
-               # trusted-users - users that can send mail as others without a warning
-               # apache, mailman, majordomo, uucp are good candidates
-       EOF
-       cat <<- EOF > "${D}"/etc/mail/access
-               # Check the /usr/share/doc/sendmail/README.cf file for a description
-               # of the format of this file. (search for access_db in that file)
-               # The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
-               # package.
-               #
-
-       EOF
-       cat <<- EOF > "${D}"/etc/conf.d/sendmail
-               # Config file for /etc/init.d/sendmail
-               # add start-up options here
-               SENDMAIL_OPTS="-bd -q30m -L sm-mta" # default daemon mode
-               CLIENTMQUEUE_OPTS="-Ac -q30m -L sm-cm" # clientmqueue
-               KILL_OPTS="" # add -9/-15/your favorite evil SIG level here
-
-       EOF
-       if use sasl; then
-               dodir /etc/sasl2
-               cat <<- EOF > "${D}"/etc/sasl2/Sendmail.conf
-               pwcheck_method: saslauthd
-               mech_list: PLAIN LOGIN
-
-               EOF
-       fi
-
-       doinitd "${FILESDIR}"/sendmail
-       systemd_dounit "${FILESDIR}"/sendmail.service
-       systemd_dounit "${FILESDIR}"/sm-client.service
-
-       keepdir /usr/adm/sm.bin
-}