blob: b677f9b5f141a61d65374d462d6e93b7a272c3c9 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/smclone/smclone-0.99.3.ebuild,v 1.2 2006/11/26 19:16:50 nyhm Exp $
WANT_AUTOCONF=latest
WANT_AUTOMAKE=latest
inherit autotools eutils games
MUSIC_V=3.1
DESCRIPTION="Secret Maryo Chronicles"
HOMEPAGE="http://www.secretmaryo.org/"
SRC_URI="mirror://sourceforge/${PN}/SMC_${PV}_source.zip
mirror://sourceforge/${PN}/SMC_${PV}_game.zip
mirror://sourceforge/${PN}/music_${MUSIC_V}_high.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=dev-games/cegui-0.5.0
virtual/opengl
virtual/glu
media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer
media-libs/sdl-ttf"
DEPEND="${RDEPEND}
dev-util/pkgconfig
app-arch/unzip"
S=${WORKDIR}
pkg_setup() {
games_pkg_setup
if ! built_with_use media-libs/sdl-image png ; then
die "Please emerge sdl-image with USE=png"
fi
if ! built_with_use dev-games/cegui devil opengl ; then
die "Please emerge cegui with USE=\"devil opengl\""
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
rm -f configure data/Makefile* docs/license.txt
sed -i "s:data/:${GAMES_DATADIR}/${PN}/:" \
$(find data/gui -type f) \
|| die "sed failed"
epatch \
"${FILESDIR}"/${P}-build.patch \
"${FILESDIR}"/${P}-paths.patch
eautoreconf
}
src_install() {
newgamesbin src/smc ${PN} || die "newgamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r data/* || die "doins failed"
newicon data/icon/window_32.png ${PN}.png
make_desktop_entry ${PN} "Secret Maryo Chronicles"
dodoc docs/*.txt
dohtml docs/{*.css,*.html}
prepgamesdirs
}
|