games-puzzle/tod: Stop using games.eclass
authorPacho Ramos <pacho@gentoo.org>
Tue, 1 May 2018 14:33:39 +0000 (16:33 +0200)
committerPacho Ramos <pacho@gentoo.org>
Tue, 1 May 2018 19:34:30 +0000 (21:34 +0200)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

games-puzzle/tod/files/tod-0-makefile.patch
games-puzzle/tod/tod-0-r1.ebuild [new file with mode: 0644]

index cd17d1cce42bcd6c3cd39b25e6fa072f15cd8020..9783fab0c4bc990f16c38d9e563347671f26cba5 100644 (file)
@@ -1,5 +1,5 @@
---- makefile
-+++ makefile
+--- a/makefile
++++ b/makefile
 @@ -1,8 +1,7 @@
  OBJ = hiscore rec scrctl tetanus crc allegdlg hgrcos\r
  HEADS = tod.h allegdlg.h crc.h hgrcos.h hiscore.h\r
diff --git a/games-puzzle/tod/tod-0-r1.ebuild b/games-puzzle/tod/tod-0-r1.ebuild
new file mode 100644 (file)
index 0000000..0ed9a29
--- /dev/null
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit desktop
+
+DESCRIPTION="Tetanus On Drugs simulates playing Tetris under the influence of drugs"
+HOMEPAGE="http://www.pineight.com/tod/"
+SRC_URI="http://www.pineight.com/pc/win${PN}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-libs/allegro:0[X]"
+DEPEND="${RDEPEND}
+       app-arch/unzip
+"
+
+S="${WORKDIR}"
+
+src_prepare() {
+       default
+       eapply "${FILESDIR}"/${P}-makefile.patch
+       sed -i \
+               -e "s:idltd\.dat:/usr/share/${PN}/idltd.dat:" \
+               rec.c || die
+}
+
+src_install() {
+       newbin tod-debug.exe tod
+       insinto /usr/share/${PN}
+       doins idltd.dat
+       dodoc readme.txt
+       make_desktop_entry ${PN} "Tetanus On Drugs"
+}