mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-15 01:23:35 +02:00
Closes: https://bugs.gentoo.org/955625 Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42087 Closes: https://github.com/gentoo/gentoo/pull/42087 Signed-off-by: Sam James <sam@gentoo.org>
107 lines
2.1 KiB
Bash
107 lines
2.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
inherit cmake python-single-r1
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/wdas/partio.git"
|
|
else
|
|
SRC_URI="https://github.com/wdas/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
|
|
fi
|
|
|
|
DESCRIPTION="Library for particle IO and manipulation"
|
|
HOMEPAGE="https://partio.us/"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE="doc test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
media-libs/freeglut
|
|
media-libs/glu
|
|
sys-libs/zlib
|
|
virtual/opengl
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
test? (
|
|
dev-cpp/gtest
|
|
)
|
|
"
|
|
|
|
BDEPEND="
|
|
dev-lang/swig
|
|
doc? (
|
|
app-text/doxygen
|
|
dev-texlive/texlive-bibtexextra
|
|
dev-texlive/texlive-fontsextra
|
|
dev-texlive/texlive-fontutils
|
|
dev-texlive/texlive-latex
|
|
dev-texlive/texlive-latexextra
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-1.19.0-fix-python-install-dir.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
sed \
|
|
-e 's/assertEquals/assertEqual/g' \
|
|
-i src/tests/testpartjson.py \
|
|
|| die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
"$(cmake_use_find_package doc Doxygen)"
|
|
|
|
-DPARTIO_GTEST_ENABLED="$(usex test)" # "Enable GTest for tests"
|
|
-DPARTIO_ORIGIN_RPATH="OFF" # "Enable ORIGIN rpath in the installed libraries"
|
|
|
|
-DPARTIO_USE_GLVND="ON" # "Use GLVND for OpenGL"
|
|
-DPARTIO_BUILD_SHARED_LIBS="ON" # "Enabled shared libraries"
|
|
|
|
-DWDAS_CXX_STANDARD=17
|
|
|
|
-DPYTHON_DEST="$(python_get_sitedir)" #922965
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
#889567
|
|
# for libpartio.so.1
|
|
local -x LD_LIBRARY_PATH="${BUILD_DIR}/src/lib"
|
|
# for import partjson, partio
|
|
local -x PYTHONPATH="${BUILD_DIR}/src/py:${CMAKE_USE_DIR}/src/tools"
|
|
|
|
CMAKE_SKIP_TESTS=(
|
|
# TypeError: Wrong number or type of arguments for overloaded function 'clone'.
|
|
"^testpartio$"
|
|
)
|
|
|
|
cmake_src_test
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
python_optimize
|
|
|
|
# only remove test binaries when they are built #955625
|
|
if use test; then
|
|
rm -r "${ED}/usr/share/partio" || die
|
|
fi
|
|
}
|