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-engines/solarus: solarus-1.3.0.ebuild ChangeLog
Date: Sun, 24 Aug 2014 15:44:30
Message-Id: 20140824154426.572183CE8@oystercatcher.gentoo.org
1 hasufell 14/08/24 15:44:26
2
3 Modified: ChangeLog
4 Added: solarus-1.3.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.4 games-engines/solarus/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/solarus/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/solarus/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/solarus/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-engines/solarus/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 7 Aug 2014 21:01:19 -0000 1.3
24 +++ ChangeLog 24 Aug 2014 15:44:26 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-engines/solarus
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-engines/solarus/ChangeLog,v 1.3 2014/08/07 21:01:19 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-engines/solarus/ChangeLog,v 1.4 2014/08/24 15:44:26 hasufell Exp $
30 +
31 +*solarus-1.3.0 (24 Aug 2014)
32 +
33 + 24 Aug 2014; Julian Ospald <hasufell@g.o> +solarus-1.3.0.ebuild:
34 + version bump
35
36 *solarus-1.2.1 (07 Aug 2014)
37
38
39
40
41 1.1 games-engines/solarus/solarus-1.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/solarus/solarus-1.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/solarus/solarus-1.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: solarus-1.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-engines/solarus/solarus-1.3.0.ebuild,v 1.1 2014/08/24 15:44:26 hasufell Exp $
51
52 EAPI=5
53
54 inherit cmake-utils games
55
56 DESCRIPTION="An open-source Zelda-like 2D game engine"
57 HOMEPAGE="http://www.solarus-games.org/"
58 SRC_URI="http://www.zelda-solarus.com/downloads/${PN}/${P}-src.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc luajit"
64
65 RDEPEND="
66 dev-games/physfs
67 media-libs/libmodplug
68 >=media-libs/libsdl2-2.0.1[X,joystick,video]
69 media-libs/libvorbis
70 media-libs/openal
71 media-libs/sdl2-image[png]
72 >=media-libs/sdl2-ttf-2.0.12
73 luajit? ( dev-lang/luajit:2 )
74 !luajit? ( dev-lang/lua )"
75 DEPEND="${RDEPEND}
76 doc? ( app-doc/doxygen )"
77
78 src_prepare() {
79 cmake-utils_src_prepare
80 }
81
82 src_configure() {
83 local mycmakeargs=(
84 -DSOLARUS_INSTALL_DESTINATION="${GAMES_BINDIR}"
85 $(cmake-utils_use luajit SOLARUS_USE_LUAJIT)
86 )
87 cmake-utils_src_configure
88 }
89
90 src_compile() {
91 cmake-utils_src_compile
92 if use doc ; then
93 cd doc || die
94 doxygen || die
95 fi
96 }
97
98 src_install() {
99 cmake-utils_src_install
100 doman solarus.6
101 use doc && dohtml -r doc/${PV%.*}/html/*
102 prepgamesdirs
103 }