games-puzzle/xtris: Stop using games.eclass
authorPacho Ramos <pacho@gentoo.org>
Tue, 1 May 2018 16:10:20 +0000 (18:10 +0200)
committerPacho Ramos <pacho@gentoo.org>
Tue, 1 May 2018 19:34:59 +0000 (21:34 +0200)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

games-puzzle/xtris/xtris-1.15-r1.ebuild [new file with mode: 0644]

diff --git a/games-puzzle/xtris/xtris-1.15-r1.ebuild b/games-puzzle/xtris/xtris-1.15-r1.ebuild
new file mode 100644 (file)
index 0000000..1c863a9
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit desktop toolchain-funcs
+
+DESCRIPTION="A networked Tetris-like game"
+HOMEPAGE="http://www.iagora.com/~espel/xtris/xtris.html"
+SRC_URI="http://www.iagora.com/~espel/xtris/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="x11-libs/libX11"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+       emake \
+               CC=$(tc-getCC) \
+               BINDIR=/usr/bin \
+               MANDIR=/usr/share/man \
+               CFLAGS="${CFLAGS}" \
+               EXTRALIBS="${LDFLAGS}"
+}
+
+src_install() {
+       dobin xtris xtserv xtbot
+       doicon "${FILESDIR}"/${PN}.xpm
+       make_desktop_entry ${PN} xtris ${PN}
+       doman xtris.6 xtserv.6 xtbot.6
+       dodoc ChangeLog PROTOCOL README
+}