blob: fbe77f16c538b23f7363cdd625f95d5c9164b8c7 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild,v 1.8 2010/10/18 18:06:19 mr_bones_ Exp $
EAPI=2
inherit flag-o-matic eutils games
DESCRIPTION="X Window block dropping game in 3 Dimension"
HOMEPAGE="http://www710.univ-lyon1.fr/ftp/xbl/xbl.html"
SRC_URI="http://www710.univ-lyon1.fr/~exco/XBL/xbl-${PV}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="x11-libs/libXext"
S=${WORKDIR}/xbl-${PV}
src_prepare() {
epatch "${FILESDIR}"/${P}-font.patch
sed -i \
-e '/^CC/d' \
-e 's:-lm:-lm -lX11:' \
-e '/DGROUP_GID/d' \
-e "s:-g$:${CFLAGS}:" \
Makefile.in || die "sed failed"
# Don't know about other archs. --slarti
use amd64 && filter-flags "-fweb"
}
src_compile() {
emake \
USE_SETGID= \
SCOREDIR="${GAMES_DATADIR}/${PN}" \
RESOURCEDIR="${GAMES_DATADIR}/${PN}" \
LDOPTIONS="${LDFLAGS}" \
|| die "emake failed"
}
src_install() {
newgamesbin bl xbl || die "newgamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
newins Xbl.ad Xbl || die "doins failed"
newman xbl.man xbl.6
dodoc README xbl-README
dohtml *.html *.gif
make_desktop_entry xbl XBlockOut
prepgamesdirs
}
|