From 46fd3b34a333fbe516d901f955687c9367e663c0 Mon Sep 17 00:00:00 2001 From: William Breathitt Gray Date: Thu, 20 Dec 2018 19:50:57 +0900 Subject: games-board/teg: add support for teg configure options. The client, debug, ggz, robot, and server USE flag options are added. The htmltidy package is obsolete, so the respective dependency is replaced with a tidy-html5 dependency. In addition, the metadata.xml file is updated with a long description of the project, descriptions for the new flags, and a switch to the Github upstream remote id. The project release is now pulled from the project Github page, where the project moved from Sourceforge. Closes: https://bugs.gentoo.org/671448 Signed-off-by: William Breathitt Gray Closes: https://github.com/gentoo/gentoo/pull/10668 Signed-off-by: Patrice Clement --- games-board/teg/metadata.xml | 14 +++++++++++++- games-board/teg/teg-0.11.2-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 games-board/teg/teg-0.11.2-r1.ebuild (limited to 'games-board') diff --git a/games-board/teg/metadata.xml b/games-board/teg/metadata.xml index 41e6e7c75fce..db57e70627ea 100644 --- a/games-board/teg/metadata.xml +++ b/games-board/teg/metadata.xml @@ -1,11 +1,23 @@ + + Tenes Empanadas Graciela (TEG) is a clone of 'Plan Tactico y + Estrategico de la Guerra', which is a pseudo-clone of Risk, a + multiplayer turn-based strategy game. + games@gentoo.org Gentoo Games Project + + Compile the client + Turn on debugging + Enable GGZ Gaming Zone support + Compile the robot + Compile the server + - teg + wfx/teg diff --git a/games-board/teg/teg-0.11.2-r1.ebuild b/games-board/teg/teg-0.11.2-r1.ebuild new file mode 100644 index 000000000000..63ae34a6c6df --- /dev/null +++ b/games-board/teg/teg-0.11.2-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome2 + +DESCRIPTION="Gnome Risk Clone" +HOMEPAGE="https://github.com/wfx/teg" +SRC_URI="https://github.com/wfx/teg/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="+client debug ggz nls robot server" + +RDEPEND="dev-libs/glib:2 + gnome-base/libgnomeui + gnome-base/libgnome + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + app-text/tidy-html5 + nls? ( sys-devel/gettext )" + +src_configure() { + econf \ + $(use_enable client) \ + $(use_enable debug) \ + $(use_enable ggz) \ + $(use_enable robot) \ + $(use_enable server) +} -- cgit v1.2.3-65-gdbad