Diff xvid-1.3.7 with a xvid-1.3.7-r1

/usr/portage/media-libs/xvid/xvid-1.3.7-r1.ebuild 2023-10-09 14:52:31.720368406 +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=7
4
EAPI=8
5 5

  
6 6
MY_PN="${PN}core"
7 7
MY_P="${MY_PN}-${PV}"
......
13 13

  
14 14
LICENSE="GPL-2"
15 15
SLOT="0"
16
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
17
IUSE="examples pic +threads"
16
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
17
IUSE="examples pic"
18 18

  
19 19
NASM=">=dev-lang/nasm-2"
20 20
YASM=">=dev-lang/yasm-1"
......
48 48
multilib_src_configure() {
49 49
	use sparc && append-cflags -mno-vis #357149
50 50

  
51
	local myconf=( $(use_enable threads pthread) )
51
	local myconf=(
52
		--enable-pthread
53
	)
54

  
52 55
	if use pic || [[ ${ABI} == "x32" ]] ; then #421841
53 56
		myconf+=( --disable-assembly )
54 57
	fi
Thank you!