gentoo/dev-util/rgbds/rgbds-1.0.0.ebuild
orbea 646e37fbe4
dev-util/rgbds: add 1.0.0
Signed-off-by: orbea <orbea@riseup.net>
Part-of: https://github.com/gentoo/gentoo/pull/44411
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
2025-11-03 00:53:47 -05:00

51 lines
1007 B
Bash

# 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
}