dev-util/rgbds - 1.0.0 (gentoo)

Search

Package Information

Description:
Rednex Game Boy Development System
Homepage:
https://rgbds.gbdev.io/

Ebuild Details

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

EAPI=8

inherit flag-o-matic toolchain-funcs

DESCRIPTION="Rednex Game Boy Development System"
HOMEPAGE="https://rgbds.gbdev.io/"
if [[ "${PV}" == *9999 ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
else
	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi

LICENSE="MIT"
SLOT="0"

DEPEND="media-libs/libpng:0="
RDEPEND="${DEPEND}"
BDEPEND="
	sys-devel/bison
	virtual/pkgconfig
"

src_compile() {
	append-flags -DNDEBUG

	emake Q= \
		CC="$(tc-getCC)" \
		CXX="$(tc-getCXX)" \
		PKG_CONFIG="$(tc-getPKG_CONFIG)"
}

src_test() {
	local dir
	for dir in asm link fix gfx; do
		pushd "test/${dir}" >/dev/null || die
		einfo "Running ${dir} tests."
		./test.sh || die
		popd >/dev/null || die
	done
}

src_install() {
	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
	dodoc README.md
}

Dependencies

DEPEND

media-libs/libpng:0=

RDEPEND

media-libs/libpng:0=

BDEPEND

	sys-devel/bison
	virtual/pkgconfig

Manifest for 1.0.0

Type File Size Source URLs
DIST rgbds-1.0.0.tar.gz 10555326 bytes https://github.com/gbdev/rgbds/archive/v1.0.0/rgbds-1.0.0.tar.gz