summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad A Simmons (CCIEChad) <chad.simmons@member.fsf.org>2008-08-21 14:30:58 +0000
committerChad A Simmons (CCIEChad) <chad.simmons@member.fsf.org>2008-08-21 14:30:58 +0000
commit257e033839631412101b1ffe79f9ead3242af8e2 (patch)
treebce103ba8ab5d3b3d2e34297d75a74d8c9ccf6b9 /games-action
parentRemove unneeded local USE flags (diff)
downloadsunrise-reviewed-257e033839631412101b1ffe79f9ead3242af8e2.tar.gz
sunrise-reviewed-257e033839631412101b1ffe79f9ead3242af8e2.tar.bz2
sunrise-reviewed-257e033839631412101b1ffe79f9ead3242af8e2.zip
games-action/tacticsgame: New ebuild for bug 235376 thanks to gentoofan23 for the dev review
svn path=/sunrise/; revision=6777
Diffstat (limited to 'games-action')
-rw-r--r--games-action/tacticsgame/ChangeLog8
-rw-r--r--games-action/tacticsgame/Manifest4
-rw-r--r--games-action/tacticsgame/metadata.xml5
-rw-r--r--games-action/tacticsgame/tacticsgame-0.3.ebuild35
4 files changed, 52 insertions, 0 deletions
diff --git a/games-action/tacticsgame/ChangeLog b/games-action/tacticsgame/ChangeLog
new file mode 100644
index 000000000..637221456
--- /dev/null
+++ b/games-action/tacticsgame/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for games-action/tacticsgame
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 21 Aug 2008; Chad A Simmons (CCIEChad) <chad.simmons@member.fsf.org>
+ +tacticsgame-0.3.ebuild, +metadata.xml:
+ New ebuild for bug 235376 thanks to gentoofan23 for the dev review
+
diff --git a/games-action/tacticsgame/Manifest b/games-action/tacticsgame/Manifest
new file mode 100644
index 000000000..d3e8fcf49
--- /dev/null
+++ b/games-action/tacticsgame/Manifest
@@ -0,0 +1,4 @@
+DIST Tactics_Squad_0.3_Linux.tar.gz 91850 RMD160 035ad1299b4f3996514a36a6b409bd0d1f0bb32d SHA1 2c389d8e863f342e6f6a9f1a762880e92c6f9cd7 SHA256 cbc8b1a2d2942572d8a01e808aa200fb3fff96c82239d3120623b7dded47b4fb
+EBUILD tacticsgame-0.3.ebuild 837 RMD160 6f79c8ac72f14b73cd815deed7ed78d7baf528b8 SHA1 b492473b1faa089d6a9c890c8e062b47850413ed SHA256 ccaef9bf26e519fc54a28e2c8aac7d987d176df854954dd9c76b82277cd91a1a
+MISC ChangeLog 308 RMD160 4f84be3a00bbdcac3414323f278296b85c1e417b SHA1 76f6bccc77228f02f3692b327831efd199e986cf SHA256 d1553ea2934bc43a9c311b15dcbf119f7a64306056d1d8fc2258ecb8715a21c3
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/games-action/tacticsgame/metadata.xml b/games-action/tacticsgame/metadata.xml
new file mode 100644
index 000000000..7e3286984
--- /dev/null
+++ b/games-action/tacticsgame/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/games-action/tacticsgame/tacticsgame-0.3.ebuild b/games-action/tacticsgame/tacticsgame-0.3.ebuild
new file mode 100644
index 000000000..ba9677799
--- /dev/null
+++ b/games-action/tacticsgame/tacticsgame-0.3.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit games
+
+DESCRIPTION="Tactics Squad is a real-time tactical game set in a futuristic environment."
+HOMEPAGE="http://sourceforge.net/projects/tacticsgame/"
+SRC_URI="mirror://sourceforge/tacticsgame/Tactics_Squad_${PV}_Linux.tar.gz"
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE=""
+
+DEPEND="media-libs/libsdl
+ virtual/opengl"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/TS"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i -e "s:-O3:${CXXFLAGS}:" Makefile || die "Sed Makefile failed"
+}
+
+src_install() {
+ dogamesbin Tactics || die "Install Failed"
+ newdoc "Change Log.txt" ChangeLog.txt || die "Doc install failed"
+ newdoc "Release Notes.txt" ReleaseNotes.txt || die "Doc install failed"
+ prepgamesdirs
+ prepalldocs
+}