blob: 7433b2dd5509ead3fcc1175586d001677e65cfc5 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/shaaft/shaaft-0.5.0.ebuild,v 1.13 2010/03/10 21:34:58 ssuominen Exp $
EAPI=2
inherit autotools eutils games
DESCRIPTION="A falling block game similar to Blockout"
HOMEPAGE="http://criticalmass.sourceforge.net/shaaft.php"
SRC_URI="mirror://sourceforge/criticalmass/${P/s/S}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="virtual/opengl
sys-libs/zlib
media-libs/libpng
media-libs/libsdl
media-libs/sdl-mixer
media-libs/sdl-image"
S=${WORKDIR}/${P/s/S}
src_prepare() {
sed -i \
-e 's:DATA_DIR:"'${GAMES_DATADIR}'\/'${PN/s/S}\/'":g' \
game/main.cpp \
|| die "sed main.cpp failed"
sed -i \
-e 's:png12:png:g' \
configure.in || die
epatch \
"${FILESDIR}"/${P}-gcc34.patch \
"${FILESDIR}"/${P}-gcc41.patch \
"${FILESDIR}"/${P}-gcc43.patch
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -f "${D}/${GAMES_BINDIR}"/Packer
dodoc TODO.txt
prepgamesdirs
}
|