diff options
author | 2012-08-24 07:46:11 +0000 | |
---|---|---|
committer | 2012-08-24 07:46:11 +0000 | |
commit | 6f05891de44f9a01ec3ec284a9ff3a9f379c2c30 (patch) | |
tree | d13f12d323ceda78767ef4f7b421dada5a066022 /games-arcade/cosmosmash | |
parent | Bump (diff) | |
download | gentoo-2-6f05891de44f9a01ec3ec284a9ff3a9f379c2c30.tar.gz gentoo-2-6f05891de44f9a01ec3ec284a9ff3a9f379c2c30.tar.bz2 gentoo-2-6f05891de44f9a01ec3ec284a9ff3a9f379c2c30.zip |
version bump
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'games-arcade/cosmosmash')
-rw-r--r-- | games-arcade/cosmosmash/ChangeLog | 8 | ||||
-rw-r--r-- | games-arcade/cosmosmash/cosmosmash-1.4.6.ebuild | 36 |
2 files changed, 42 insertions, 2 deletions
diff --git a/games-arcade/cosmosmash/ChangeLog b/games-arcade/cosmosmash/ChangeLog index 3a7d41909f71..ac4c9e95e2a6 100644 --- a/games-arcade/cosmosmash/ChangeLog +++ b/games-arcade/cosmosmash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/cosmosmash # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/ChangeLog,v 1.4 2012/05/04 04:22:28 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/ChangeLog,v 1.5 2012/08/24 07:46:11 mr_bones_ Exp $ + +*cosmosmash-1.4.6 (24 Aug 2012) + + 24 Aug 2012; Michael Sterrett <mr_bones_@gentoo.org> +cosmosmash-1.4.6.ebuild: + version bump 04 May 2012; Jeff Horelick <jdhore@gentoo.org> cosmosmash-1.4.5.ebuild: dev-util/pkgconfig -> virtual/pkgconfig @@ -17,4 +22,3 @@ 18 May 2010; Michael Sterrett <mr_bones_@gentoo.org> +cosmosmash-1.4.5.ebuild, +metadata.xml: Initial commit - diff --git a/games-arcade/cosmosmash/cosmosmash-1.4.6.ebuild b/games-arcade/cosmosmash/cosmosmash-1.4.6.ebuild new file mode 100644 index 000000000000..407214eaa6e4 --- /dev/null +++ b/games-arcade/cosmosmash/cosmosmash-1.4.6.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/cosmosmash-1.4.6.ebuild,v 1.1 2012/08/24 07:46:11 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="" + +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 +} |