blob: b7584866e9ea7dd7a51d14a38dc047e7475933b5 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/flobopuyo/flobopuyo-0.20.ebuild,v 1.1 2004/10/16 06:55:06 mr_bones_ Exp $
inherit toolchain-funcs games
DESCRIPTION="Clone of the famous PuyoPuyo game"
HOMEPAGE="http://www.ios-software.com/?page=projet&quoi=29"
SRC_URI="http://www.ios-software.com/flobopuyo/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer
virtual/opengl"
src_unpack() {
unpack ${A}
cd "${S}"
find . -type f -name ".*" -exec rm -f \{\} \;
sed -i \
-e "s:^DATADIR=.*:DATADIR=\"${GAMES_DATADIR}/${PN}\":" \
-e "/^INSTALL_BINDIR/s:/\$(PREFIX)/games:${GAMES_BINDIR}:" \
-e "/^CC=/s/g++/$(tc-getCXX)/" \
-e "/^CXX=/s/g++/$(tc-getCXX)/" \
Makefile \
|| die "sed failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc Changelog TODO
prepgamesdirs
}
|