Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-rpg/zsxd: zsxd-1.8.0.ebuild ChangeLog
Date: Thu, 22 May 2014 17:12:37
Message-Id: 20140522171233.5EFBA2004E@flycatcher.gentoo.org
1 hasufell 14/05/22 17:12:33
2
3 Modified: ChangeLog
4 Added: zsxd-1.8.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.4 games-rpg/zsxd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/zsxd/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/zsxd/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/zsxd/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-rpg/zsxd/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 13 Apr 2014 20:27:31 -0000 1.3
24 +++ ChangeLog 22 May 2014 17:12:33 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-rpg/zsxd
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/zsxd/ChangeLog,v 1.3 2014/04/13 20:27:31 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/zsxd/ChangeLog,v 1.4 2014/05/22 17:12:33 hasufell Exp $
30 +
31 +*zsxd-1.8.0 (22 May 2014)
32 +
33 + 22 May 2014; Julian Ospald <hasufell@g.o>
34 + +files/zsxd-1.8.0-paths.patch, +zsxd-1.8.0.ebuild:
35 + version bump
36
37 13 Apr 2014; Julian Ospald <hasufell@g.o> zsxd-1.7.1.ebuild:
38 update license info wrt #507412
39
40
41
42 1.1 games-rpg/zsxd/zsxd-1.8.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/zsxd/zsxd-1.8.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/zsxd/zsxd-1.8.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: zsxd-1.8.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-rpg/zsxd/zsxd-1.8.0.ebuild,v 1.1 2014/05/22 17:12:33 hasufell Exp $
52
53 EAPI=5
54
55 inherit eutils gnome2-utils cmake-utils games
56
57 DESCRIPTION="A free 2D Zelda fangame parody"
58 HOMEPAGE="http://www.solarus-games.org/"
59 SRC_URI="http://www.zelda-solarus.com/downloads/${PN}/${P}.tar.gz"
60
61 LICENSE="all-rights-reserved CC-BY-SA-3.0 GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65 RESTRICT="mirror"
66
67 RDEPEND="games-engines/solarus"
68 DEPEND="app-arch/zip"
69
70 DOCS=( ChangeLog readme.txt )
71 PATCHES=( "${FILESDIR}"/${P}-paths.patch )
72
73 src_prepare() {
74 cmake-utils_src_prepare
75 }
76
77 src_configure() {
78 local mycmakeargs=(
79 -DDATADIR="${GAMES_DATADIR}/solarus"
80 -DBINDIR="${GAMES_BINDIR}"
81 )
82 cmake-utils_src_configure
83 }
84
85 src_compile() {
86 cmake-utils_src_compile
87 }
88
89 src_install() {
90 cmake-utils_src_install
91 newicon -s 48 build/icons/${PN}_icon_48.png ${PN}.png
92 newicon -s 256 build/icons/${PN}_icon_256.png ${PN}.png
93
94 # install proper wrapper script
95 rm -f "${ED%/}${GAMES_BINDIR}"/${PN}
96 games_make_wrapper ${PN} "solarus \"${GAMES_DATADIR}/solarus/${PN}\""
97
98 make_desktop_entry "${PN}" "Zelda: Mystery of Solarus XD"
99 prepgamesdirs
100 }
101
102 pkg_preinst() {
103 games_pkg_preinst
104 gnome2_icon_savelist
105 }
106
107 pkg_postinst() {
108 games_pkg_postinst
109 gnome2_icon_cache_update
110 }