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: metadata.xml ChangeLog violetland-0.2.4.ebuild
Date: Mon, 30 Nov 2009 19:25:53
Message-Id: E1NFBsc-0007dB-Na@stork.gentoo.org
1 mr_bones_ 09/11/30 19:25:50
2
3 Added: metadata.xml ChangeLog violetland-0.2.4.ebuild
4 Log:
5 initial commit - ebuild submitted by Azamat H. Hackimov via bug #294776
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 games-action/violetland/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>games</herd>
20 </pkgmetadata>
21
22
23
24 1.1 games-action/violetland/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for games-action/violetland
32 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/games-action/violetland/ChangeLog,v 1.1 2009/11/30 19:25:50 mr_bones_ Exp $
34
35 *violetland-0.2.4 (30 Nov 2009)
36
37 30 Nov 2009; Michael Sterrett <mr_bones_@g.o>
38 +violetland-0.2.4.ebuild, +metadata.xml:
39 initial commit - ebuild submitted by Azamat H. Hackimov via bug #294776
40
41
42
43
44 1.1 games-action/violetland/violetland-0.2.4.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/violetland-0.2.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/violetland/violetland-0.2.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: violetland-0.2.4.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.2.4.ebuild,v 1.1 2009/11/30 19:25:50 mr_bones_ Exp $
54
55 EAPI=2
56 inherit eutils cmake-utils games
57
58 DESCRIPTION="Help a girl by name of Violet to struggle with hordes of monsters."
59 HOMEPAGE="http://code.google.com/p/violetland/"
60 SRC_URI="http://violetland.googlecode.com/files/${PN}-v${PV}-src.zip"
61
62 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 RDEPEND="media-libs/libsdl[audio,video]
68 media-libs/sdl-image[png]
69 media-libs/sdl-mixer[vorbis]
70 media-libs/sdl-ttf
71 x11-libs/libX11
72 x11-libs/libXext
73 virtual/opengl
74 virtual/glu"
75 DEPEND="${RDEPEND}
76 app-arch/unzip"
77
78 S=${WORKDIR}/${PN}-v${PV}
79
80 src_prepare() {
81 sed -i \
82 -e "/README_EN.TXT/d" \
83 -e "/README_RU.TXT/d" \
84 CMakeLists.txt || die "sed failed"
85 }
86
87 src_configure() {
88 local mycmakeargs="\
89 -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX} \
90 -DDATA_INSTALL_DIR=${GAMES_DATADIR}"
91 cmake-utils_src_configure
92 }
93
94 src_install() {
95 DOCS="README_EN.TXT" cmake-utils_src_install
96 newicon icon-light.png ${PN}.png
97 make_desktop_entry ${PN} VioletLand
98 prepgamesdirs
99 }