games-engines/box2d - 2.4.2 (gentoo)

Search

Package Information

Description:
C++ engine for simulating rigid bodies in 2D games
Homepage:
https://box2d.org/
License:
ZLIB

Ebuild Details

Version EAPI Keywords Slot
2.4.2 8 amd64 ~arm arm64 ~loong ppc64 ~riscv x86 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="C++ engine for simulating rigid bodies in 2D games"
HOMEPAGE="https://box2d.org/"
SRC_URI="https://github.com/erincatto/Box2D/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
IUSE="doc test"
RESTRICT="!test? ( test )"

DEPEND="test? ( dev-cpp/doctest )"
BDEPEND="doc? ( app-text/doxygen )"

PATCHES=( "${FILESDIR}/${P}-sandbox-error.patch" ) # bug 907072, downstream

src_prepare() {
	cmake_src_prepare

	# unbundle doctest
	rm unit-test/doctest.h || die
	ln -s "${ESYSROOT}"/usr/include/doctest/doctest.h unit-test/ || die
}

src_configure() {
	local mycmakeargs=(
		-DBOX2D_BUILD_TESTBED=OFF # bundled libs, broken anyway right now
		-DBOX2D_BUILD_UNIT_TESTS=$(usex test)
		-DBOX2D_BUILD_DOCS=$(usex doc)
	)
	cmake_src_configure
}

src_test() {
	"${BUILD_DIR}"/bin/unit_test || die
}

USE Flags

doc

Dependencies

DEPEND

test? ( dev-cpp/doctest )

BDEPEND

doc? ( app-text/doxygen )

Manifest for 2.4.2

Type File Size Source URLs
DIST box2d-2.4.2.tar.gz 1236569 bytes https://github.com/erincatto/Box2D/archive/v2.4.2.tar.gz