Diff virtualgl-3.0.2 with a virtualgl-3.1

/usr/portage/x11-misc/virtualgl/virtualgl-3.1.ebuild 2023-10-09 14:52:35.948368513 +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 4
EAPI=8
......
13 13
	MY_P="${MY_PN}-${PV}"
14 14
	S="${WORKDIR}/${MY_P}"
15 15
	SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${MY_P}.tar.gz"
16
	KEYWORDS="amd64 x86"
16
	KEYWORDS="~amd64 ~x86"
17 17
fi
18 18

  
19 19
DESCRIPTION="Run OpenGL applications remotely with full 3D hardware acceleration"
......
21 21

  
22 22
SLOT="0"
23 23
LICENSE="LGPL-2.1 wxWinLL-3.1 FLTK"
24
IUSE="ssl"
24
IUSE=""
25 25

  
26 26
RDEPEND="
27
	ssl? (
28
		dev-libs/openssl:0=[${MULTILIB_USEDEP}]
29
	)
30 27
	media-libs/libjpeg-turbo[${MULTILIB_USEDEP}]
31 28
	x11-libs/libX11[${MULTILIB_USEDEP}]
32 29
	x11-libs/libXext[${MULTILIB_USEDEP}]
......
65 62

  
66 63
	abi_configure() {
67 64
		local mycmakeargs=(
68
			-DVGL_USESSL="$(usex ssl)"
69 65
			-DCMAKE_INSTALL_DOCDIR=/usr/share/doc/"${PF}"
70 66
			-DTJPEG_INCLUDE_DIR=/usr/include
71 67
			-DCMAKE_INSTALL_LIBDIR=/usr/$(get_libdir)/VirtualGL
Thank you!