summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2013-04-20 07:18:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2013-04-20 07:18:40 +0000
commit041f6cc285893aa681637875fbe33c8af476647b (patch)
tree2312c2823986791f461c88cb168c6627441fca1b
parentVersion bump. (diff)
downloadgentoo-2-041f6cc285893aa681637875fbe33c8af476647b.tar.gz
gentoo-2-041f6cc285893aa681637875fbe33c8af476647b.tar.bz2
gentoo-2-041f6cc285893aa681637875fbe33c8af476647b.zip
version bump
(Portage version: 2.1.11.55/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r--games-arcade/cosmosmash/ChangeLog7
-rw-r--r--games-arcade/cosmosmash/cosmosmash-1.4.7.ebuild37
2 files changed, 43 insertions, 1 deletions
diff --git a/games-arcade/cosmosmash/ChangeLog b/games-arcade/cosmosmash/ChangeLog
index e1bbe99e0200..b0ecb3df7871 100644
--- a/games-arcade/cosmosmash/ChangeLog
+++ b/games-arcade/cosmosmash/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for games-arcade/cosmosmash
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/ChangeLog,v 1.9 2013/01/30 22:52:40 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/ChangeLog,v 1.10 2013/04/20 07:18:40 mr_bones_ Exp $
+
+*cosmosmash-1.4.7 (20 Apr 2013)
+
+ 20 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org> +cosmosmash-1.4.7.ebuild:
+ version bump
30 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -cosmosmash-1.4.5.ebuild:
old
diff --git a/games-arcade/cosmosmash/cosmosmash-1.4.7.ebuild b/games-arcade/cosmosmash/cosmosmash-1.4.7.ebuild
new file mode 100644
index 000000000000..bd65286459b4
--- /dev/null
+++ b/games-arcade/cosmosmash/cosmosmash-1.4.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/cosmosmash-1.4.7.ebuild,v 1.1 2013/04/20 07:18:40 mr_bones_ Exp $
+
+EAPI=2
+inherit autotools games
+
+DESCRIPTION="A space rock shooting video game"
+HOMEPAGE="http://perso.b2b2c.ca/sarrazip/dev/cosmosmash.html"
+SRC_URI="http://perso.b2b2c.ca/sarrazip/dev/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RESTRICT="test" # uses the sound card which portage user might not be available.
+
+RDEPEND=">=dev-games/flatzebra-0.1.6"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_prepare() {
+ sed -i \
+ -e "/^pkgsounddir/ s:sounds.*:\$(PACKAGE)/sounds:" \
+ -e "/^desktopentrydir/ s:=.*:=/usr/share/applications:" \
+ -e "/^pixmapdir/ s:=.*:=/usr/share/pixmaps:" \
+ src/Makefile.am \
+ || die
+ eautoreconf
+}
+
+src_install() {
+ emake -C src DESTDIR="${D}" install || die
+ doman doc/${PN}.6
+ dodoc AUTHORS NEWS README THANKS
+ prepgamesdirs
+}