Diff chkrootkit-0.55-r1 with a chkrootkit-0.57

/usr/portage/app-forensics/chkrootkit/chkrootkit-0.57.ebuild 2023-10-09 14:52:28.748368331 +0300
1
# Copyright 2022 Gentoo Authors
1
# Copyright 2022-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
inherit systemd toolchain-funcs
7 7

  
8
GENTOO_PATCH="${PN}-0.55-gentoo.patch"
8
GENTOO_PATCH="${P}-gentoo.patch"
9 9

  
10 10
DESCRIPTION="Tool to locally check for signs of a rootkit"
11 11
HOMEPAGE="http://www.chkrootkit.org/"
12
SRC_URI="ftp://ftp.pangeia.com.br/pub/seg/pac/${P}.tar.gz"
13
SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${GENTOO_PATCH}.bz2"
12
SRC_URI="ftp://chkrootkit.org/pub/seg/pac/${P}.tar.gz"
13
SRC_URI+=" https://dev.gentoo.org/~tupone/distfiles/${CATEGORY}/${PN}/${GENTOO_PATCH}.bz2"
14 14

  
15 15
LICENSE="BSD-2"
16 16
SLOT="0"
......
20 20
RDEPEND="cron? ( virtual/cron )"
21 21

  
22 22
PATCHES=(
23
	"${WORKDIR}/${GENTOO_PATCH}"
24
	"${FILESDIR}/${P}-fcntl_h.patch"
25
	"${FILESDIR}/${P}-limits_h.patch"
23
	"${WORKDIR}/${P}-gentoo.patch"
24
	"${FILESDIR}/${PN}-0.55-fcntl_h.patch"
25
	"${FILESDIR}/${PN}-0.55-limits_h.patch"
26 26
)
27 27

  
28 28
src_prepare() {
......
33 33
}
34 34

  
35 35
src_compile() {
36
	emake CC="$(tc-getCC)" STRIP=true sense
36
	emake CC="$(tc-getCC)" STRIP=/bin/true sense
37 37
}
38 38

  
39 39
src_install() {
Thank you!