]> Pileus Git - ~andy/sunrise/commitdiff
games-arcade/tuxanci: New ebuild, created by myself
authorJakub Moc <jakub@gentoo.org>
Sun, 25 Mar 2007 11:32:49 +0000 (11:32 +0000)
committerJakub Moc <jakub@gentoo.org>
Sun, 25 Mar 2007 11:32:49 +0000 (11:32 +0000)
svn path=/sunrise/; revision=3280

games-arcade/tuxanci/ChangeLog [new file with mode: 0644]
games-arcade/tuxanci/Manifest [new file with mode: 0644]
games-arcade/tuxanci/metadata.xml [new file with mode: 0644]
games-arcade/tuxanci/tuxanci-0.07.ebuild [new file with mode: 0644]

diff --git a/games-arcade/tuxanci/ChangeLog b/games-arcade/tuxanci/ChangeLog
new file mode 100644 (file)
index 0000000..468aabd
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for games-arcade/tuxanci
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  25 Mar 2007; Jakub Moc <jakub@gentoo.org> +tuxanci-0.07.ebuild,
+  +metadata.xml:
+  New ebuild, created by myself
+
diff --git a/games-arcade/tuxanci/Manifest b/games-arcade/tuxanci/Manifest
new file mode 100644 (file)
index 0000000..34d8397
--- /dev/null
@@ -0,0 +1,4 @@
+DIST tuxanci-0.07.tar.bz2 1182820 RMD160 cfaa33651ab7b7ac5b2cf3e50a436d35b5afdff0 SHA1 15534d5356afab3cb9b79b753c3a05fc4778f652 SHA256 0bbaae9d356afd651c5bc1ce6218c149e406b5470df894a4f621b9e46bfd6696
+EBUILD tuxanci-0.07.ebuild 793 RMD160 59de04f77894b2e42d55278b9d06fad38a7214b2 SHA1 3b0e137b9650c06f427adb96fc7e4427dfe5011e SHA256 6107efda825f729941e3627cdf91cddeb74aee9428a695b3fcf4a512ce037678
+MISC ChangeLog 237 RMD160 647922c540728fca0a1664c860d6bb7656634d3d SHA1 097fdbdb1cbe2d9018ff95aa8e1e3ff0c9080b51 SHA256 18f20514976e852d91282235edba892aecb246734fcb5f09be0db3a967447fc8
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/games-arcade/tuxanci/metadata.xml b/games-arcade/tuxanci/metadata.xml
new file mode 100644 (file)
index 0000000..7e32869
--- /dev/null
@@ -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-arcade/tuxanci/tuxanci-0.07.ebuild b/games-arcade/tuxanci/tuxanci-0.07.ebuild
new file mode 100644 (file)
index 0000000..dfdfd17
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $ 
+
+inherit games toolchain-funcs
+
+DESCRIPTION="First Cushion Shooter! A remake of well-known Czech game Bulanci."
+SRC_URI="http://tuxanci.tuxportal.cz/releases/${P}.tar.bz2"
+HOMEPAGE="http://tuxanci.tuxportal.cz"
+
+KEYWORDS="~x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="media-libs/libsdl
+       media-libs/sdl-ttf
+       media-libs/sdl-image
+       media-libs/sdl-mixer"
+
+
+src_unpack() {
+       unpack ${A}
+       cd "${S}"
+       # quick fix for English localization
+       sed -i -e "s/End game/Quit!/" lang/en.lang || die "sed failed"
+}
+
+src_compile() {
+       emake CC=$(tc-getCC) || die "emake failed"
+}
+
+src_install() {
+       emake DESTDIR="${D}" install || die "Installation failed."
+       dodoc README ChangeLog
+       prepgamesdirs
+}