blob: 101abccdb7b32ec834cdda717b35b800417a8037 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/smclone/smclone-0.99.6.ebuild,v 1.1 2007/04/20 17:14:38 nyhm Exp $
inherit eutils games
DESCRIPTION="Secret Maryo Chronicles"
HOMEPAGE="http://www.secretmaryo.org/"
SRC_URI="mirror://sourceforge/${PN}/smc-${PV}.tar.bz2
mirror://sourceforge/${PN}/music_3.1_high.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=dev-games/cegui-0.5.0
dev-libs/boost
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}/smc-${PV}
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 opengl ; then
die "Please emerge cegui with USE=opengl"
fi
if ! built_with_use -o dev-games/cegui devil freeimage ; then
die "Please emerge cegui with USE=devil or USE=freeimage"
fi
}
src_unpack() {
unpack smc-${PV}.tar.bz2
cd "${S}"
unpack music_3.1_high.zip
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon data/icon/window_32.png ${PN}.png
make_desktop_entry smc "Secret Maryo Chronicles"
dodoc docs/*.txt
dohtml docs/{*.css,*.html}
prepgamesdirs
}
|