Diff netkit-bootparamd-0.17-r4 with a netkit-bootparamd-0.17-r5

/usr/portage/net-misc/netkit-bootparamd/netkit-bootparamd-0.17-r5.ebuild 2023-10-09 14:52:34.664368481 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6 6
inherit toolchain-funcs flag-o-matic
7 7

  
8
DESCRIPTION="Netkit - bootparamd"
8
DESCRIPTION="Netkit - bootparamd: Net-boot support daemon"
9 9
HOMEPAGE="https://wiki.linuxfoundation.org/networking/netkit"
10 10
SRC_URI="mirror://debian/pool/main/n/${PN}/${PN}_${PV}.orig.tar.gz"
11 11

  
12 12
LICENSE="BSD GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 ~hppa ~mips ppc sparc x86"
14
KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
15 15
IUSE="+libtirpc"
16 16

  
17 17
DEPEND="
......
21 21
"
22 22
RDEPEND=${DEPEND}
23 23

  
24
src_prepare() {
25
	eapply "${FILESDIR}"/0.17-jumpstart.patch
26
	eapply "${FILESDIR}"/0.17-libtirpc.patch
24
PATCHES=(
25
	"${FILESDIR}"/0.17-jumpstart.patch
26
	"${FILESDIR}"/0.17-libtirpc.patch
27
)
27 28

  
29
src_prepare() {
28 30
	# don't reset LDFLAGS (bug #335457), manpages into /usr/share/man
29 31
	sed -i -e '/^LDFLAGS=/d ; /MANDIR=/s:man:share/man:' configure || die
30

  
31 32
	sed -i -e 's:install -s:install:' rpc.bootparamd/Makefile || die
32

  
33 33
	default
34 34
}
35 35

  
Thank you!