diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-05 21:48:43 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-06 21:32:58 +0100 |
commit | cdf7fd47e497c28b3431c219c30114ce7d83c3ed (patch) | |
tree | ba94af6102013e91fe73d291574797abf57627b4 /mail-filter | |
parent | x11-misc/gbdfed: Port to EAPI 8 (diff) | |
download | gentoo-cdf7fd47e497c28b3431c219c30114ce7d83c3ed.tar.gz gentoo-cdf7fd47e497c28b3431c219c30114ce7d83c3ed.tar.bz2 gentoo-cdf7fd47e497c28b3431c219c30114ce7d83c3ed.zip |
mail-filter/spampd: Port to EAPI 8
Closes: https://bugs.gentoo.org/819468
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/spampd/spampd-2.42.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mail-filter/spampd/spampd-2.42.ebuild b/mail-filter/spampd/spampd-2.42.ebuild index 357e81734992..a31d8091448b 100644 --- a/mail-filter/spampd/spampd-2.42.ebuild +++ b/mail-filter/spampd/spampd-2.42.ebuild @@ -1,25 +1,25 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 DESCRIPTION="spampd is a program to scan messages for Unsolicited Commercial E-mail content" HOMEPAGE="http://www.worlddesign.com/index.cfm/rd/mta/spampd.htm" SRC_URI="https://github.com/mpaperno/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" -IUSE="" -RDEPEND="dev-lang/perl +DEPEND=" dev-perl/Net-Server mail-filter/spamassassin" -DEPEND="${RDEPEND}" +RDEPEND="${DEPEND} + dev-lang/perl" src_install() { dosbin spampd.pl - dodoc changelog.txt misc/spampd-rh-rc-script.sh misc/spampd.service - dohtml spampd.html + dodoc changelog.txt misc/spampd-rh-rc-script.sh misc/spampd.service spampd.html newinitd "${FILESDIR}"/init-r1 spampd newconfd "${FILESDIR}"/conf spampd } |