Diff mimedefang-2.84-r2 with a mimedefang-3.1

/usr/portage/mail-filter/mimedefang/mimedefang-3.1.ebuild 2023-10-09 14:52:31.580368403 +0300
1 1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
DESCRIPTION="Antispam, antivirus and other customizable filters for MTAs with Milter support"
7
HOMEPAGE="http://www.mimedefang.org/"
8
SRC_URI="http://www.mimedefang.org/static/${P}.tar.gz"
7
HOMEPAGE="https://www.mimedefang.org/"
8
SRC_URI="https://mimedefang.org/releases/${P}.tar.gz"
9 9

  
10 10
LICENSE="GPL-2+"
11 11
SLOT="0"
......
14 14
RESTRICT="!test? ( test )"
15 15

  
16 16
RDEPEND="
17
	|| ( mail-mta/sendmail mail-mta/postfix )
17 18
	acct-group/defang
18 19
	acct-user/defang
19 20
	dev-perl/Digest-SHA1
......
34 35
	)
35 36
"
36 37

  
37
src_prepare() {
38
	eapply "${FILESDIR}/${PN}-2.72-ldflags.patch"
39
	eapply "${FILESDIR}/${PN}-tests.patch"
40
	eapply_user
41
}
38
PATCHES=(
39
	"${FILESDIR}/${PN}-2.72-ldflags.patch"
40
	"${FILESDIR}/${PN}-vendor.patch"
41
	"${FILESDIR}/${PN}-tests2.patch"
42
)
42 43

  
43 44
src_configure() {
44 45
	local myeconfargs=(
Thank you!