Diff bullet-3.21 with a bullet-3.22b

/usr/portage/sci-physics/bullet/bullet-3.22b.ebuild 2023-10-09 14:52:35.252368495 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
6 6
inherit cmake toolchain-funcs
7 7

  
8 8
DESCRIPTION="Continuous Collision Detection and Physics Library"
9
HOMEPAGE="https://www.bulletphysics.com/"
10
SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> ${P}.tar.gz"
9
HOMEPAGE="https://pybullet.org/wordpress/"
10
SRC_URI="https://github.com/bulletphysics/${PN}3/archive/${PV}.tar.gz -> ${P}.tar.gz"
11 11

  
12 12
LICENSE="ZLIB"
13 13
SLOT="0/${PV}"
14
KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
15 15
IUSE="doc double-precision examples extras openmp tbb test +threads"
16 16

  
17 17
REQUIRED_USE="
......
45 45
}
46 46

  
47 47
src_prepare() {
48
	(use ppc || use ppc64) && PATCHES+=( "${FILESDIR}/${P}-replace_altivec_vector_keyword.patch" )
49

  
50 48
	cmake_src_prepare
51 49

  
52 50
	# allow to generate docs
Thank you!