blob: 47be0341669a1187a4450b81ba98cf04ebf3b22b (
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
58
59
|
# Copyright 1999-2005 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-r6.ebuild,v 1.2 2005/06/15 18:15:10 wolf31o2 Exp $
inherit eutils games
DEB_VER=30
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
mirror://debian/pool/main/x/${PN}/${PN}_${PV}-${DEB_VER}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE=""
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}"/${P}-xpaths.patch #79496
epatch "${WORKDIR}"/${PN}_${PV}-${DEB_VER}.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
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
}
|