summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2014-08-25 21:19:30 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2014-08-25 21:19:30 +0000
commit32da4c0073b8f6c7584dc682df77e74ad444a957 (patch)
tree03b719c25a6e4d3b23c76e841c16e44f31248177 /games-action/maelstrom
parentadd missing setuptools dependency (diff)
downloadgentoo-2-32da4c0073b8f6c7584dc682df77e74ad444a957.tar.gz
gentoo-2-32da4c0073b8f6c7584dc682df77e74ad444a957.tar.bz2
gentoo-2-32da4c0073b8f6c7584dc682df77e74ad444a957.zip
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-action/maelstrom')
-rw-r--r--games-action/maelstrom/ChangeLog6
-rw-r--r--games-action/maelstrom/maelstrom-3.0.6-r1.ebuild60
2 files changed, 5 insertions, 61 deletions
diff --git a/games-action/maelstrom/ChangeLog b/games-action/maelstrom/ChangeLog
index 1fba5349bfe5..bdc0d4fd9e32 100644
--- a/games-action/maelstrom/ChangeLog
+++ b/games-action/maelstrom/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-action/maelstrom
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.26 2014/07/18 14:23:05 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/ChangeLog,v 1.27 2014/08/25 21:19:30 mr_bones_ Exp $
+
+ 25 Aug 2014; Michael Sterrett <mr_bones_@gentoo.org>
+ -maelstrom-3.0.6-r1.ebuild:
+ old
18 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
maelstrom-3.0.6-r2.ebuild:
diff --git a/games-action/maelstrom/maelstrom-3.0.6-r1.ebuild b/games-action/maelstrom/maelstrom-3.0.6-r1.ebuild
deleted file mode 100644
index aff6c33ac5ce..000000000000
--- a/games-action/maelstrom/maelstrom-3.0.6-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/maelstrom/maelstrom-3.0.6-r1.ebuild,v 1.12 2014/05/15 16:23:38 ulm Exp $
-
-EAPI=2
-inherit eutils games
-
-MY_P=Maelstrom-${PV}
-DESCRIPTION="An asteroids battle game"
-SRC_URI="http://www.devolution.com/~slouken/Maelstrom/src/${MY_P}.tar.gz"
-HOMEPAGE="http://www.devolution.com/~slouken/Maelstrom/"
-
-KEYWORDS="alpha amd64 ppc x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND="media-libs/libsdl[sound,joystick,video]
- media-libs/sdl-net"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${PF}-security.patch \
- "${FILESDIR}"/${P}-64bits.patch \
- "${FILESDIR}"/${PN}-gcc34.patch
-
- # Install the data into $(datadir)/..., not $(prefix)/games/...
- sed -i \
- -e "s:(prefix)/games/:(datadir)/:" configure \
- || die "sed failed"
- sed -i \
- -e '/make install_gamedata/s:=:=$(DESTDIR)/:' \
- Makefile.in \
- || die "sed failed"
- # Install the high scores file in ${GAMES_STATEDIR}
- sed -i \
- -e "s:path.Path(MAELSTROM_SCORES):\"${GAMES_STATEDIR}/\"MAELSTROM_SCORES:" \
- scores.cpp \
- || die "sed failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc Changelog README* Docs/{Maelstrom-Announce,*FAQ,MaelstromGPL_press_release,*.Paper,Technical_Notes*}
- newicon "${D}${GAMES_DATADIR}"/Maelstrom/icon.xpm maelstrom.xpm
- make_desktop_entry Maelstrom "Maelstrom" maelstrom
-
- # Put the high scores file in the right place
- insinto "${GAMES_STATEDIR}"
- doins "${D}${GAMES_DATADIR}"/Maelstrom/Maelstrom-Scores || die "doins failed"
- # clean up some cruft
- rm -f \
- "${D}${GAMES_DATADIR}"/Maelstrom/Maelstrom-Scores \
- "${D}${GAMES_DATADIR}"/Maelstrom/Images/Makefile*
- # make sure we can update the high scores
- fperms 664 "${GAMES_STATEDIR}"/Maelstrom-Scores || die "fperms failed"
- prepgamesdirs
-}