blob: 35cd8ea5da45b26c59c16b058f5c1510a1de509f (
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/xgalaga/xgalaga-2.0.34-r5.ebuild,v 1.1 2004/07/10 04:16:23 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="Galaga game clone."
HOMEPAGE="http://rumsey.org/xgal.html"
SRC_URI="http://http.us.debian.org/debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz
http://http.us.debian.org/debian/pool/main/x/${PN}/${PN}_${PV}-28.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc alpha sparc amd64"
IUSE=""
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${WORKDIR}/${PN}_${PV}-28.diff"
sed -i \
-e "/LEVELDIR\|SOUNDDIR/ s:prefix:datadir/${PN}:" \
-e "/\/scores/ s:prefix:localstatedir/${PN}:" configure \
|| die "sed configure failed"
sed -i \
-e '/SOUNDDEFS/ s:@prefix@:@prefix@/bin:' Makefile.in \
|| die "sed Makefile.in failed"
}
src_compile() {
egamesconf || die
emake CPPFLAGS="-D__NO_STRING_INLINES" || die "compile problem"
}
src_install() {
dogamesbin xgalaga xgal.sndsrv.linux || die "dogamesbin failed"
dodoc README README.SOUND CHANGES INSTALL
newman xgal.6x xgal.6
insinto "${GAMES_DATADIR}/${PN}/sounds"
doins sounds/*.raw || die "doins failed"
insinto "${GAMES_DATADIR}/${PN}/levels"
doins levels/*.xgl || die "doins failed"
insinto /usr/share/pixmaps
doins xgalaga-icon.xpm || die "doins failed"
make_desktop_entry xgalaga xgalaga xgalaga-icon.xpm
dodir "${GAMES_STATEDIR}/${PN}"
touch "${D}${GAMES_STATEDIR}/${PN}/scores"
fperms 660 "${GAMES_STATEDIR}/${PN}/scores"
prepgamesdirs
}
|