diff options
author | Jakub Moc <jakub@gentoo.org> | 2007-03-25 11:32:49 +0000 |
---|---|---|
committer | Jakub Moc <jakub@gentoo.org> | 2007-03-25 11:32:49 +0000 |
commit | 5e6465d49ec31e30cb97599e7558712d7e46a521 (patch) | |
tree | 59523829ff92c0075f750e8a90744c753a80e269 /games-arcade | |
parent | app-antivirus/xfprot: Version bump, nuke old (diff) | |
download | sunrise-reviewed-5e6465d49ec31e30cb97599e7558712d7e46a521.tar.gz sunrise-reviewed-5e6465d49ec31e30cb97599e7558712d7e46a521.tar.bz2 sunrise-reviewed-5e6465d49ec31e30cb97599e7558712d7e46a521.zip |
games-arcade/tuxanci: New ebuild, created by myself
svn path=/sunrise/; revision=3280
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/tuxanci/ChangeLog | 8 | ||||
-rw-r--r-- | games-arcade/tuxanci/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/tuxanci/metadata.xml | 5 | ||||
-rw-r--r-- | games-arcade/tuxanci/tuxanci-0.07.ebuild | 36 |
4 files changed, 53 insertions, 0 deletions
diff --git a/games-arcade/tuxanci/ChangeLog b/games-arcade/tuxanci/ChangeLog new file mode 100644 index 000000000..468aabd90 --- /dev/null +++ b/games-arcade/tuxanci/ChangeLog @@ -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 index 000000000..34d839761 --- /dev/null +++ b/games-arcade/tuxanci/Manifest @@ -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 index 000000000..7e3286984 --- /dev/null +++ b/games-arcade/tuxanci/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-arcade/tuxanci/tuxanci-0.07.ebuild b/games-arcade/tuxanci/tuxanci-0.07.ebuild new file mode 100644 index 000000000..dfdfd175c --- /dev/null +++ b/games-arcade/tuxanci/tuxanci-0.07.ebuild @@ -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 +} |