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.10.ebuild
Date: Sat, 01 May 2010 22:28:33
Message-Id: 20100501222829.772782C164@corvid.gentoo.org
1 mr_bones_ 10/05/01 22:28:29
2
3 Modified: ChangeLog
4 Added: violetland-0.2.10.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.8 games-action/violetland/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 27 Apr 2010 14:48:45 -0000 1.7
23 +++ ChangeLog 1 May 2010 22:28:29 -0000 1.8
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.7 2010/04/27 14:48:45 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v 1.8 2010/05/01 22:28:29 mr_bones_ Exp $
29 +
30 +*violetland-0.2.10 (01 May 2010)
31 +
32 + 01 May 2010; Michael Sterrett <mr_bones_@g.o>
33 + +violetland-0.2.10.ebuild:
34 + version bump
35
36 27 Apr 2010; Pawel Hajdan jr <phajdan.jr@g.o>
37 violetland-0.2.9.ebuild:
38
39
40
41 1.1 games-action/violetland/violetland-0.2.10.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/violetland-0.2.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/violetland-0.2.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: violetland-0.2.10.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.10.ebuild,v 1.1 2010/05/01 22:28:29 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 }