blob: 409d441a03ef353e4cdc3622a02925d8bbae0b09 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/xblockout-1.1.2.ebuild,v 1.9 2004/12/28 16:52:27 josejx Exp $
inherit games
DESCRIPTION="XBlockOut: X Window block dropping game in 3 Dimension"
HOMEPAGE="http://www710.univ-lyon1.fr/ftp/xbl/xbl.html"
SRC_URI="ftp://ftp710.univ-lyon1.fr/pub/xbl/xbl-${PV}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
RDEPEND="virtual/x11
virtual/libc"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S="${WORKDIR}/xbl-${PV}"
src_unpack() {
unpack ${A}
sed -i \
-e "s:-lm:-lm -L/usr/X11R6/lib -lX11:" \
-e "s:-g$:${CFLAGS}:" ${S}/Makefile.in \
|| die "sed Makefile.in failed"
}
src_compile() {
egamesconf || die
emake \
SCOREDIR="${GAMES_STATEDIR}/${PN}" \
GROUP_GID=$(id -g ${GAMES_GROUP}) \
RESOURCEDIR="${GAMES_DATADIR}/${PN}" \
|| die "emake failed"
}
src_install() {
newgamesbin bl xbl || die "newgamesbin failed"
insinto ${GAMES_DATADIR}/${PN}
newins Xbl.ad Xbl
insinto ${GAMES_STATEDIR}/${PN}
newins Xbl.ad Xbl
newman xbl.man xbl.6
dodoc README xbl-README
dohtml *.html *.gif
prepgamesdirs
}
|