diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-27 09:08:11 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-27 09:08:11 +0000 |
commit | 69a5b9031ee9d0fc8f5f8c26916269eb13c76b5b (patch) | |
tree | eea1b2409867c58c10d1c1fafc89c3fb15222228 /games-action | |
parent | cleanup (diff) | |
download | historical-69a5b9031ee9d0fc8f5f8c26916269eb13c76b5b.tar.gz historical-69a5b9031ee9d0fc8f5f8c26916269eb13c76b5b.tar.bz2 historical-69a5b9031ee9d0fc8f5f8c26916269eb13c76b5b.zip |
initial commit - ebuild submitted by Atzm Watanabe via bug #53225
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/rrootage/ChangeLog | 10 | ||||
-rw-r--r-- | games-action/rrootage/Manifest | 4 | ||||
-rw-r--r-- | games-action/rrootage/files/digest-rrootage-0.23a | 1 | ||||
-rw-r--r-- | games-action/rrootage/metadata.xml | 5 | ||||
-rw-r--r-- | games-action/rrootage/rrootage-0.23a.ebuild | 48 |
5 files changed, 68 insertions, 0 deletions
diff --git a/games-action/rrootage/ChangeLog b/games-action/rrootage/ChangeLog new file mode 100644 index 000000000000..7d4b793faf5f --- /dev/null +++ b/games-action/rrootage/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-action/rrootage +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/ChangeLog,v 1.1 2004/09/27 09:08:10 mr_bones_ Exp $ + +*rrootage-0.23a (27 Sep 2004) + + 27 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> +metadata.xml, + +rrootage-0.23a.ebuild: + initial commit - ebuild submitted by Atzm Watanabe via bug #53225 + diff --git a/games-action/rrootage/Manifest b/games-action/rrootage/Manifest new file mode 100644 index 000000000000..d3457e2be724 --- /dev/null +++ b/games-action/rrootage/Manifest @@ -0,0 +1,4 @@ +MD5 7e000e45ce465bcbf03bbf272780894e rrootage-0.23a.ebuild 1214 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 e209631fffb675a2385589d0c4c27cdc ChangeLog 414 +MD5 282b52d17f5c68430f3db79cb1cd8cfd files/digest-rrootage-0.23a 67 diff --git a/games-action/rrootage/files/digest-rrootage-0.23a b/games-action/rrootage/files/digest-rrootage-0.23a new file mode 100644 index 000000000000..e4cfc66eac92 --- /dev/null +++ b/games-action/rrootage/files/digest-rrootage-0.23a @@ -0,0 +1 @@ +MD5 fb12876d703594d915ec43a56bd9ce62 rRootage-0.23a.tar.gz 3910941 diff --git a/games-action/rrootage/metadata.xml b/games-action/rrootage/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-action/rrootage/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>games</herd> +</pkgmetadata> diff --git a/games-action/rrootage/rrootage-0.23a.ebuild b/games-action/rrootage/rrootage-0.23a.ebuild new file mode 100644 index 000000000000..153f3b11892f --- /dev/null +++ b/games-action/rrootage/rrootage-0.23a.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/rrootage-0.23a.ebuild,v 1.1 2004/09/27 09:08:10 mr_bones_ Exp $ + +inherit games + +MY_PN="rRootage" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="Abstract shooter - defeat auto-created huge battleships" +HOMEPAGE="http://www.asahi-net.or.jp/~cs8k-cyu/windows/rr_e.html + http://rrootage.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/opengl + virtual/glu + media-libs/libsdl + media-libs/sdl-mixer + >=dev-libs/libbulletml-0.0.3" + +S="${WORKDIR}/${MY_PN}/src" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -e "s/-lglut/-lGL -lGLU/" makefile.lin > Makefile || die "sed failed" + + sed -i \ + -e "s:/usr/share/games:${GAMES_DATADIR}:" \ + barragemanager.cc screen.c soundmanager.c \ + || die "sed failed" +} + +src_compile() { + emake MORE_CFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + newgamesbin rr ${PN} || die "newgamesbin failed" + dodir "${GAMES_DATADIR}/${MY_PN}" + cp -r ../rr_share/* "${D}/${GAMES_DATADIR}/${MY_PN}" || die "cp failed" + dodoc ../readme* + prepgamesdirs +} |