diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-10-11 05:12:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-10-11 05:12:08 +0000 |
commit | 69d4a7ffcc630a33f4bfcf2bcf25899b01b89843 (patch) | |
tree | 1d00c20ac872368bbfd8f5f95b42578ca83daae7 /games-arcade/rocksndiamonds | |
parent | version bump (diff) | |
download | historical-69d4a7ffcc630a33f4bfcf2bcf25899b01b89843.tar.gz historical-69d4a7ffcc630a33f4bfcf2bcf25899b01b89843.tar.bz2 historical-69d4a7ffcc630a33f4bfcf2bcf25899b01b89843.zip |
version bump
Diffstat (limited to 'games-arcade/rocksndiamonds')
-rw-r--r-- | games-arcade/rocksndiamonds/ChangeLog | 11 | ||||
-rw-r--r-- | games-arcade/rocksndiamonds/files/digest-rocksndiamonds-3.0.6 | 1 | ||||
-rw-r--r-- | games-arcade/rocksndiamonds/rocksndiamonds-3.0.6.ebuild | 46 |
3 files changed, 55 insertions, 3 deletions
diff --git a/games-arcade/rocksndiamonds/ChangeLog b/games-arcade/rocksndiamonds/ChangeLog index 4e958ebca8be..bdd16a3d0d59 100644 --- a/games-arcade/rocksndiamonds/ChangeLog +++ b/games-arcade/rocksndiamonds/ChangeLog @@ -1,14 +1,19 @@ # ChangeLog for games-arcade/rocksndiamonds # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/rocksndiamonds/ChangeLog,v 1.4 2003/09/15 21:58:44 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/rocksndiamonds/ChangeLog,v 1.5 2003/10/11 05:12:08 vapier Exp $ + +*rocksndiamonds-3.0.6 (11 Oct 2003) + + 11 Oct 2003; Mike Frysinger <vapier@gentoo.org> : + Version bump. + +*rocksndiamonds-3.0.4 (15 Sep 2003) 15 Sep 2003; Michael Sterrett <msterret@gentoo.org> rocksndiamonds-2.1.1.ebuild, rocksndiamonds-3.0.0.ebuild, rocksndiamonds-3.0.2.ebuild: removed old versions -*rocksndiamonds-3.0.4 (15 Sep 2003) - 15 Sep 2003; Michael Sterrett <msterret@gentoo.org> rocksndiamonds-3.0.4.ebuild: version bump diff --git a/games-arcade/rocksndiamonds/files/digest-rocksndiamonds-3.0.6 b/games-arcade/rocksndiamonds/files/digest-rocksndiamonds-3.0.6 new file mode 100644 index 000000000000..c03d31faa576 --- /dev/null +++ b/games-arcade/rocksndiamonds/files/digest-rocksndiamonds-3.0.6 @@ -0,0 +1 @@ +MD5 f848f40b91a0128b8022c4fb91154a5f rocksndiamonds-3.0.6.tar.gz 6843282 diff --git a/games-arcade/rocksndiamonds/rocksndiamonds-3.0.6.ebuild b/games-arcade/rocksndiamonds/rocksndiamonds-3.0.6.ebuild new file mode 100644 index 000000000000..1661bc0bdfb9 --- /dev/null +++ b/games-arcade/rocksndiamonds/rocksndiamonds-3.0.6.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/rocksndiamonds/rocksndiamonds-3.0.6.ebuild,v 1.1 2003/10/11 05:12:08 vapier Exp $ + +inherit games flag-o-matic + +DESCRIPTION="A Boulderdash clone" +HOMEPAGE="http://www.artsoft.org/rocksndiamonds/" +SRC_URI="http://www.artsoft.org/RELEASES/unix/rocksndiamonds/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="X? ( virtual/x11 ) + sdl? ( >=media-libs/libsdl-1.2.3 + >=media-libs/sdl-mixer-1.2.4 + >=media-libs/sdl-image-1.2.2 ) + || ( X? ( ) sdl? ( ) virtual/x11 )" + +src_compile() { + replace-flags -march=k6 -march=i586 + + local makeopts="RO_GAME_DIR=${GAMES_DATADIR}/${PN} RW_GAME_DIR=${GAMES_STATEDIR}/${PN}" + if [ `use X` ] || [ -z "`use X``use sdl`" ] ; then + make clean || die + make ${makeopts} OPTIONS="${CFLAGS}" x11 || die + mv rocksndiamonds{,.x11} + fi + if [ `use sdl` ] ; then + make clean || die + make ${makeopts} OPTIONS="${CFLAGS}" sdl || die + mv rocksndiamonds{,.sdl} + fi +} + +src_install() { + dogamesbin rocksndiamonds.{sdl,x11} + dodir ${GAMES_DATADIR}/${PN} + cp -R graphics levels music sounds ${D}/${GAMES_DATADIR}/${PN}/ + + newman rocksndiamonds.{1,6} + dodoc CHANGES CREDITS HARDWARE README TODO docs/elements/*.txt + + prepgamesdirs +} |