Diff spamprobe-1.4d-r2 with a spamprobe-1.4d-r3

/usr/portage/mail-filter/spamprobe/spamprobe-1.4d-r3.ebuild 2024-12-25 14:59:49.703270105 +0300
1 1
# Copyright 1999-2024 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5

  
6
inherit toolchain-funcs
5 7

  
6 8
DESCRIPTION="Fast, intelligent, automatic spam detector using Bayesian analysis"
7
HOMEPAGE="http://spamprobe.sourceforge.net/"
9
HOMEPAGE="https://spamprobe.sourceforge.net/"
8 10
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
9 11

  
10 12
LICENSE="QPL-1.0"
......
15 17
RDEPEND="
16 18
	berkdb? ( >=sys-libs/db-3.2:* )
17 19
	gif? ( media-libs/giflib:= )
18
	jpeg? ( virtual/jpeg:0 )
20
	jpeg? ( media-libs/libjpeg-turbo:= )
19 21
	png? ( media-libs/libpng:0= )
20 22
"
21 23
DEPEND="${RDEPEND}"
......
36 38
		$(use_with png)
37 39
}
38 40

  
41
src_compile() {
42
	emake AR="$(tc-getAR)"
43
}
44

  
39 45
src_install() {
40 46
	default
41 47

  
Thank you!