blob: 8619120d3ead6af1299d6c6bdf43303f13f4b32f (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/pacmanarena/pacmanarena-0.15.ebuild,v 1.9 2005/09/11 02:52:59 agriffis Exp $
inherit games
DESCRIPTION="a Pacman clone in full 3D with a few surprises. Rockets, bombs and explosions abound."
HOMEPAGE="http://sourceforge.net/projects/pacmanarena/"
SRC_URI="mirror://sourceforge/pacmanarena/pacman-arena-${PV}.tar.bz2
mirror://sourceforge/pacmanarena/pacman-data-0.0.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 x86"
IUSE="vorbis"
DEPEND="virtual/x11
virtual/opengl
>=media-libs/sdl-mixer-1.2.4
>=media-libs/sdl-net-1.2.4
vorbis? ( media-libs/libvorbis )"
S=${WORKDIR}/pacman
src_unpack() {
unpack pacman-arena-${PV}.tar.bz2
cd "${S}"
unpack pacman-data-0.0.zip
sed -i \
-e "/^CFLAGS/ s:pacman:${PN}:" \
Makefile.in || die "sed file.h failed"
}
src_install() {
newgamesbin pacman pacmanarena || die "newgamesbin failed"
dodir ${GAMES_DATADIR}/${PN}
cp -r gfx/ sfx/ ${D}${GAMES_DATADIR}/${PN} || die "cp failed"
dodoc README || die "dodoc failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if ! use vorbis ; then
echo
ewarn "You need vorbis in your USE var and sdl components build"
ewarn "with vorbis to have sound."
echo
fi
}
|