diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 22:01:26 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:24 +0000 |
commit | 364b35d0d51bc69f5997bd26f9b5b8eef4bb77a0 (patch) | |
tree | 87de41a3ae256304c492ea56b0cd78486167d9ff /mail-filter/milter-regex | |
parent | dev-cpp/libmcpp: drop 2.7.2_p5 (diff) | |
download | gentoo-364b35d0d51bc69f5997bd26f9b5b8eef4bb77a0.tar.gz gentoo-364b35d0d51bc69f5997bd26f9b5b8eef4bb77a0.tar.bz2 gentoo-364b35d0d51bc69f5997bd26f9b5b8eef4bb77a0.zip |
mail-filter/milter-regex: drop 2.7
Bug: https://bugs.gentoo.org/886725
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mail-filter/milter-regex')
-rw-r--r-- | mail-filter/milter-regex/milter-regex-2.7.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/mail-filter/milter-regex/milter-regex-2.7.ebuild b/mail-filter/milter-regex/milter-regex-2.7.ebuild deleted file mode 100644 index bb4fad4ea9fd..000000000000 --- a/mail-filter/milter-regex/milter-regex-2.7.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="A milter-based regular expression filter" -HOMEPAGE="https://www.benzedrine.ch/milter-regex.html" -SRC_URI="https://www.benzedrine.ch/${P}.tar.gz" -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="acct-user/milter-regex - || ( mail-filter/libmilter mail-mta/sendmail )" -DEPEND="${RDEPEND} - app-alternatives/yacc" - -src_prepare() { - eapply "${FILESDIR}/${PN}-2.6-gentoo.patch" - eapply_user - # Change default user - sed -i -e 's/_\(milter-regex\)/\1/g' ${PN}.[8c] || die -} - -src_compile() { - emake CC="$(tc-getCC)" -f Makefile.linux all -} - -src_install() { - dobin ${PN} - insinto /etc - newins rules ${PN}.conf - newconfd "${FILESDIR}/${PN}-conf-2.6" ${PN} - newinitd "${FILESDIR}/${PN}-init" ${PN} - doman *.8 -} - -pkg_postinst() { - elog "Postfix configuration example (add to main.cf or master.cf):" - elog " smtpd_milters=unix:/run/milter-regex/socket" - elog "Sendmail configuration example:" - elog " INPUT_MAIL_FILTER(\`${PN}',\`S=unix:/run/milter-regex/socket,T=S:30s;R:2m')" -} |