diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-09-28 13:13:51 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-09-28 13:13:51 -0400 |
| commit | e35538d4a7d1eb400500bb6c58db2d9a9b2b4941 (patch) | |
| tree | 4ef7da2c30dc431f79d943b3b551b3d7d09f6352 | |
| parent | cc40c62caa90d12f86f14b82498c8bdcc7716b57 (diff) | |
Add media-sound/goattracker
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | media-sound/goattracker/Manifest | 2 | ||||
| -rw-r--r-- | media-sound/goattracker/goattracker-2.75.ebuild | 33 |
3 files changed, 36 insertions, 0 deletions
@@ -9,4 +9,5 @@ other overlays, or modifying less-than-ideals in the upstream ebuild repository. - [chocolate-doom](http://www.chocolate-doom.org/) as games-fps/chocolate-doom - [crispy-doom](https://github.com/fabiangreffrath/crispy-doom) as games-fps/crispy-doom - [dosbox-x](https://github.com/joncampbell123/dosbox-x) as games-emulation/dosbox-x +- [GoatTracker 2](http://covertbitops.c64.org/) as media-sound/goattracker - [MilkyTracker](https://milkytracker.titandemo.org/) as media-sound/milkytracker diff --git a/media-sound/goattracker/Manifest b/media-sound/goattracker/Manifest new file mode 100644 index 0000000..89044b6 --- /dev/null +++ b/media-sound/goattracker/Manifest @@ -0,0 +1,2 @@ +DIST GoatTracker_2.75.zip 1516416 BLAKE2B 3d61f10f28fc3ff27abdbcfe311d448c28fe6fcffe79bfc6dba3bd217e2b14ceba5317fe086fe99005dcf69ef5f3e0057209516de6a2351bf8c542ce4ad5afc8 SHA512 f9b5849d56da4694c798f5659e07f936f84aa657181f0101193bb3cd5ee2af4c73490d61e0aff18edbfc4539470f025d1f9fa2395a96408ac378f372007eb28f +EBUILD goattracker-2.75.ebuild 736 BLAKE2B db66c37fb374bab48ea831cc14f75dba1c67817ced4829ba982c921c587cc6e1f86b5d70853c08994f7d246fdc6d3c9ca18170059df8a7c42c53140ce29f4141 SHA512 b5939bc7a82aaabfb6bdb377d8fe4100dc7fe9d09aab17dd453700eea646b224ecad15c8dff9024f6dc02a029282836c75d2e87cf329aa686cc34348ca079a7e diff --git a/media-sound/goattracker/goattracker-2.75.ebuild b/media-sound/goattracker/goattracker-2.75.ebuild new file mode 100644 index 0000000..837f2f8 --- /dev/null +++ b/media-sound/goattracker/goattracker-2.75.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Crossplatform music editor for creating Commodore 64 music" +HOMEPAGE="http://covertbitops.c64.org/" +SRC_URI="https://downloads.sourceforge.net/goattracker2/GoatTracker_2.75.zip" + +LICENSE="GPL-2" +SLOT="0" + +RDEPEND="media-libs/libsdl" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/goattrk2/src" + +src_prepare() { + sed -i '/strip \$@/d' makefile.common + make clean + default +} + +src_install() { + dobin ../linux/goattrk2 + dobin ../linux/gt2reloc + dobin ../linux/ins2snd2 + dobin ../linux/mod2sng + dobin ../linux/sngspli2 + + dodoc ../{authors,copying,goat_tracker_commands.pdf} + dodoc ../readme* +} |