blob: 31e0a6a49a2a06d4242b432b0c8d48c95705cf32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/rocksndiamonds/rocksndiamonds-3.0.8.ebuild,v 1.4 2004/07/01 03:08:07 mr_bones_ Exp $
inherit flag-o-matic games
DESCRIPTION="A Boulderdash clone"
HOMEPAGE="http://www.artsoft.org/rocksndiamonds/"
SRC_URI="http://www.artsoft.org/RELEASES/unix/rocksndiamonds/${P}.tar.gz
http://www.artsoft.org/RELEASES/rocksndiamonds/levels/BD2K3-1.0.0.zip
http://www.jb-line.de/rnd_jue-v5.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE="X sdl"
DEPEND="virtual/libc
X? ( virtual/x11 )
!sdl? ( virtual/x11 )
sdl? ( >=media-libs/libsdl-1.2.3
>=media-libs/sdl-mixer-1.2.4
>=media-libs/sdl-image-1.2.2 )"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}/levels
unpack rnd_jue-v5.zip
unpack BD2K3-1.0.0.zip
}
src_compile() {
replace-cpu-flags i586 k6 k6-1 k6-2
local makeopts="RO_GAME_DIR=${GAMES_DATADIR}/${PN} RW_GAME_DIR=${GAMES_STATEDIR}/${PN}"
if use X || { ! 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} || die
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
}
|