diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-06-23 00:53:30 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-06-23 01:18:49 +0200 |
commit | c54d0ce97be13a4840f7e5848996287c504d3856 (patch) | |
tree | 89fe0eb4ef7fee0fd5e0829409a408fc2f40d568 /app-emulation/uxn | |
parent | app-emulation/uxn: bump to 0_p20230609 (diff) | |
download | gentoo-c54d0ce97be13a4840f7e5848996287c504d3856.tar.gz gentoo-c54d0ce97be13a4840f7e5848996287c504d3856.tar.bz2 gentoo-c54d0ce97be13a4840f7e5848996287c504d3856.zip |
app-emulation/uxn: sync live
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emulation/uxn')
-rw-r--r-- | app-emulation/uxn/uxn-9999.ebuild | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/app-emulation/uxn/uxn-9999.ebuild b/app-emulation/uxn/uxn-9999.ebuild index 1b6c4a1a5ff4..55a5c6f70c66 100644 --- a/app-emulation/uxn/uxn-9999.ebuild +++ b/app-emulation/uxn/uxn-9999.ebuild @@ -6,19 +6,20 @@ EAPI=8 inherit toolchain-funcs DESCRIPTION="An assembler and emulator for the Uxn stack-machine, written in ANSI C" -HOMEPAGE=" - https://wiki.xxiivv.com/site/uxn.html - https://git.sr.ht/~rabbits/uxn/ -" +HOMEPAGE="https://wiki.xxiivv.com/site/uxn.html + https://git.sr.ht/~rabbits/uxn/" if [[ ${PV} == *9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://git.sr.ht/~rabbits/uxn.git" -else +elif [[ ${PV} == *_p20230609 ]] ; then + COMMIT=f3674b2562e6c5557fc008edbac71d9fcfde64ff SRC_URI="https://git.sr.ht/~rabbits/uxn/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}"/${PN}-${COMMIT} + S="${WORKDIR}"/uxn-${COMMIT} KEYWORDS="~amd64 ~x86" +else + die "wrong package version (PV), given: ${PV}" fi LICENSE="MIT" @@ -27,16 +28,19 @@ SLOT="0" RDEPEND="media-libs/libsdl2:=" DEPEND="${RDEPEND}" -PATCHES=( "${FILESDIR}"/uxn-build.sh.patch ) +PATCHES=( "${FILESDIR}"/uxn-0_p20230609-build.sh.patch ) src_compile() { CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ./build.sh --no-run || die "build failed" local f + local f_base for f in ./projects/{examples/*,software,utils}/*.tal ; do - ./bin/uxnasm "${f}" "$(dirname "${f}")"/"$(basename "${f}" .tal)".rom || - die "failed to assemble ${f}" + f_base="$(basename "${f}" .tal)" + ebegin "Assembling ROM ${f_base}" + ./bin/uxnasm "${f}" "$(dirname "${f}")"/"${f_base}".rom + eend ${?} || die "failed to assemble ${f}" done } |