Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/violetland: violetland-0.3.0.ebuild ChangeLog
Date: Wed, 26 May 2010 19:01:35
Message-Id: 20100526185528.BB1AF2CEFB@corvid.gentoo.org
1 mr_bones_ 10/05/26 18:55:28
2
3 Modified: ChangeLog
4 Added: violetland-0.3.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.10 games-action/violetland/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/violetland/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/violetland/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/violetland/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 26 May 2010 18:24:37 -0000 1.9
23 +++ ChangeLog 26 May 2010 18:55:28 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-action/violetland
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v 1.9 2010/05/26 18:24:37 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v 1.10 2010/05/26 18:55:28 mr_bones_ Exp $
29 +
30 +*violetland-0.3.0 (26 May 2010)
31 +
32 + 26 May 2010; Michael Sterrett <mr_bones_@g.o>
33 + +violetland-0.3.0.ebuild:
34 + version bump
35
36 26 May 2010; Pacho Ramos <pacho@g.o> violetland-0.2.9.ebuild:
37 stable amd64, bug 315495
38
39
40
41 1.1 games-action/violetland/violetland-0.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/violetland/violetland-0.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/violetland/violetland-0.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: violetland-0.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.3.0.ebuild,v 1.1 2010/05/26 18:55:28 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils cmake-utils games
54
55 DESCRIPTION="Help a girl by name of Violet to struggle with hordes of monsters."
56 HOMEPAGE="http://code.google.com/p/violetland/"
57 SRC_URI="http://violetland.googlecode.com/files/${PN}-v${PV}-src.zip"
58
59 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 RDEPEND="media-libs/libsdl[audio,video]
65 media-libs/sdl-image[png]
66 media-libs/sdl-mixer[vorbis]
67 media-libs/sdl-ttf
68 x11-libs/libXext
69 x11-libs/libSM
70 virtual/opengl
71 virtual/glu"
72 DEPEND="${RDEPEND}
73 app-arch/unzip"
74
75 S=${WORKDIR}/${PN}-v${PV}
76
77 src_prepare() {
78 sed -i \
79 -e "/README_EN.TXT/d" \
80 -e "/README_RU.TXT/d" \
81 CMakeLists.txt || die "sed failed"
82 }
83
84 src_configure() {
85 mycmakeargs=(
86 "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
87 "-DDATA_INSTALL_DIR=${GAMES_DATADIR}"
88 )
89 cmake-utils_src_configure
90 }
91
92 src_compile() {
93 cmake-utils_src_compile
94 }
95
96 src_install() {
97 DOCS="README_EN.TXT CHANGELOG" cmake-utils_src_install
98 newicon icon-light.png ${PN}.png
99 make_desktop_entry ${PN} VioletLand
100 prepgamesdirs
101 }