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: ChangeLog violetland-0.2.8.ebuild
Date: Wed, 10 Feb 2010 20:35:14
Message-Id: E1NfJHE-0006uL-0d@stork.gentoo.org
1 mr_bones_ 10/02/10 20:35:12
2
3 Modified: ChangeLog
4 Added: violetland-0.2.8.ebuild
5 Log:
6 version bump (bug #304155)
7 (Portage version: 2.1.7.16/cvs/Linux i686)
8
9 Revision Changes Path
10 1.4 games-action/violetland/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 20 Jan 2010 19:41:05 -0000 1.3
23 +++ ChangeLog 10 Feb 2010 20:35:11 -0000 1.4
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.3 2010/01/20 19:41:05 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v 1.4 2010/02/10 20:35:11 mr_bones_ Exp $
29 +
30 +*violetland-0.2.8 (10 Feb 2010)
31 +
32 + 10 Feb 2010; Michael Sterrett <mr_bones_@g.o>
33 + +violetland-0.2.8.ebuild:
34 + version bump (bug #304155)
35
36 20 Jan 2010; Markus Meier <maekke@g.o> violetland-0.2.4.ebuild:
37 amd64/x86 stable, bug #299703
38
39
40
41 1.1 games-action/violetland/violetland-0.2.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/violetland-0.2.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/violetland-0.2.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: violetland-0.2.8.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.2.8.ebuild,v 1.1 2010/02/10 20:35:11 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 local mycmakeargs="\
86 -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX} \
87 -DDATA_INSTALL_DIR=${GAMES_DATADIR}"
88 cmake-utils_src_configure
89 }
90
91 src_compile() {
92 cmake-utils_src_compile
93 }
94
95 src_install() {
96 DOCS="README_EN.TXT CHANGELOG" cmake-utils_src_install
97 newicon icon-light.png ${PN}.png
98 make_desktop_entry ${PN} VioletLand
99 prepgamesdirs
100 }