mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Signed-off-by: orbea <orbea@riseup.net> Part-of: https://github.com/gentoo/gentoo/pull/44411 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
51 lines
1007 B
Bash
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
|
|
}
|