diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-05-18 03:33:41 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-05-18 03:33:41 +0000 |
commit | 561ff86d7c6683350f049802571bee9fa4a22f02 (patch) | |
tree | 51574e49c5e2f1a4deb28763c62acbf4e4bfda76 /games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild | |
parent | Sort dependency order. (diff) | |
download | gentoo-2-561ff86d7c6683350f049802571bee9fa4a22f02.tar.gz gentoo-2-561ff86d7c6683350f049802571bee9fa4a22f02.tar.bz2 gentoo-2-561ff86d7c6683350f049802571bee9fa4a22f02.zip |
Initial commit
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild')
-rw-r--r-- | games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild b/games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild new file mode 100644 index 000000000000..be161321fb6c --- /dev/null +++ b/games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/cosmosmash/cosmosmash-1.4.5.ebuild,v 1.1 2010/05/18 03:33:41 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="~x86" +IUSE="" + +RDEPEND=">=dev-games/flatzebra-0.1.5" +DEPEND="${RDEPEND} + dev-util/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 "sed failed" + eautoreconf +} + +src_install() { + emake -C src DESTDIR="${D}" install || die "emake install failed" + doman doc/${PN}.6 + dodoc AUTHORS NEWS README THANKS + prepgamesdirs +} |