Diff nx-3.5.99.26 with a nx-3.5.99.27

/usr/portage/net-misc/nx/nx-3.5.99.27.ebuild 2023-10-09 14:52:34.668368481 +0300
1 1
# Copyright 1999-2023 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
inherit autotools toolchain-funcs
6 6

  
7 7
DESCRIPTION="NX compression technology core libraries"
8 8
HOMEPAGE="https://github.com/ArcticaProject/nx-libs"
9

  
9 10
SRC_URI="https://github.com/ArcticaProject/nx-libs/archive/${PV}.tar.gz -> nx-libs-${PV}.tar.gz"
10 11

  
11 12
LICENSE="GPL-2"
12 13
SLOT="0"
13
KEYWORDS="amd64 ~arm64 ~ppc ~riscv x86"
14
IUSE="selinux"
14
KEYWORDS="~amd64 ~arm64 ~ppc ~riscv ~x86"
15 15

  
16 16
RDEPEND="dev-libs/libxml2
17 17
	media-libs/libjpeg-turbo:*
......
39 39
	x11-misc/gccmakedep
40 40
	x11-misc/imake"
41 41

  
42
RDEPEND+=" selinux? ( sec-policy/selinux-nx )"
43

  
44 42
S="${WORKDIR}/nx-libs-${PV}"
45 43

  
46 44
PATCHES=(
47
	# https://github.com/ArcticaProject/nx-libs/pull/1012
48
	"${FILESDIR}/${PN}-3.5.99.26-binutils-2.36.patch"
49
	# https://github.com/ArcticaProject/nx-libs/pull/1023
50
	"${FILESDIR}/${PN}-3.5.99.26-riscv64-support.patch"
51 45
	"${FILESDIR}/${PN}-3.5.99.26-musl.patch"
52
	"${FILESDIR}/${PN}-3.5.99.26-which.patch"
46
	"${FILESDIR}/${PN}-3.5.99.27-which.patch"
53 47
)
54 48

  
55 49
src_prepare() {
......
88 82
	local subdir
89 83
	for subdir in nxcomp nxdialog nxcompshad nxproxy ; do
90 84
		pushd ${subdir} || die
91
		econf
85
		econf --enable-static
92 86
		popd || die
93 87
	done
94 88

  
Thank you!