<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <longdescription lang="en">
+ 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.
+ </longdescription>
<maintainer type="project">
<email>games@gentoo.org</email>
<name>Gentoo Games Project</name>
</maintainer>
+ <use>
+ <flag name="client">Compile the client</flag>
+ <flag name="debug">Turn on debugging</flag>
+ <flag name="ggz">Enable GGZ Gaming Zone support</flag>
+ <flag name="robot">Compile the robot</flag>
+ <flag name="server">Compile the server</flag>
+ </use>
<upstream>
- <remote-id type="sourceforge">teg</remote-id>
+ <remote-id type="github">wfx/teg</remote-id>
</upstream>
</pkgmetadata>
--- /dev/null
+# 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)
+}