Diff oidentd-3.0.0-r1 with a oidentd-3.1.0

/usr/portage/net-misc/oidentd/oidentd-3.1.0.ebuild 2023-10-09 14:52:34.668368481 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
11 11

  
12 12
LICENSE="BSD-2 GPL-2 LGPL-2+"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
15
IUSE="debug ipv6 masquerade selinux"
14
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
15
IUSE="debug masquerade selinux"
16 16

  
17 17
DEPEND="masquerade? ( net-libs/libnetfilter_conntrack )"
18 18

  
......
28 28
	sys-devel/flex
29 29
"
30 30

  
31
PATCHES=( "${FILESDIR}/${P}-ipv6-masquerade.patch" )
32

  
33 31
src_prepare() {
34 32
	sed -i '/ExecStart/ s|$| -u oidentd -g oidentd|' contrib/systemd/*.service || die
35 33

  
......
39 37
src_configure() {
40 38
	local myconf=(
41 39
		$(use_enable debug)
42
		$(use_enable ipv6)
43 40
		$(use_enable masquerade libnfct)
44 41
		$(use_enable masquerade nat)
42
		--enable-ipv6
45 43
		--enable-xdgbdir
46 44
	)
47 45
	econf "${myconf[@]}"
Thank you!