blob: 4387e8cbc629cc571c458ba26589de06906f1439 (
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-action/violetland/violetland-0.2.4.ebuild,v 1.2 2010/01/20 19:41:05 maekke Exp $
EAPI=2
inherit eutils cmake-utils games
DESCRIPTION="Help a girl by name of Violet to struggle with hordes of monsters."
HOMEPAGE="http://code.google.com/p/violetland/"
SRC_URI="http://violetland.googlecode.com/files/${PN}-v${PV}-src.zip"
LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-libs/libsdl[audio,video]
media-libs/sdl-image[png]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-ttf
x11-libs/libX11
x11-libs/libXext
virtual/opengl
virtual/glu"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${PN}-v${PV}
src_prepare() {
sed -i \
-e "/README_EN.TXT/d" \
-e "/README_RU.TXT/d" \
CMakeLists.txt || die "sed failed"
}
src_configure() {
local mycmakeargs="\
-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX} \
-DDATA_INSTALL_DIR=${GAMES_DATADIR}"
cmake-utils_src_configure
}
src_install() {
DOCS="README_EN.TXT" cmake-utils_src_install
newicon icon-light.png ${PN}.png
make_desktop_entry ${PN} VioletLand
prepgamesdirs
}
|