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