blob: 868a5d9d454b727784c0c398c034f3e43ffba5c9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild,v 1.15 2008/03/15 04:34:31 mr_bones_ Exp $
inherit games
DESCRIPTION="2.5D tetris like game"
HOMEPAGE="http://xnc.jinr.ru/xwelltris/"
SRC_URI="http://xnc.jinr.ru/xwelltris/src/${P}.src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-image"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/INSTALL_PROGRAM/s/-s //' \
src/Make.common.in \
|| die "sed Make.common.in failed"
sed -i \
-e "/GLOBAL_SEARCH/s:\".*\":\"${GAMES_DATADIR}/${PN}\":" \
src/include/globals.h.in \
|| die "sed globals.h.in failed"
}
src_compile() {
# configure/build process is pretty messed up
egamesconf --with-sdl || die
emake -C src || die "emake failed"
}
src_install() {
dodir "${GAMES_BINDIR}" "${GAMES_DATADIR}/${PN}" /usr/share/man
emake install \
INSTDIR="${D}/${GAMES_BINDIR}" \
INSTLIB="${D}/${GAMES_DATADIR}/${PN}" \
INSTMAN=/usr/share/man \
|| die "emake install failed"
dodoc AUTHORS Changelog README*
prepgamesdirs
}
|