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-strategy/megaglest-data: megaglest-data-3.9.1.ebuild ChangeLog
Date: Mon, 27 Jan 2014 00:58:07
Message-Id: 20140127005804.45C0B2004C@flycatcher.gentoo.org
1 hasufell 14/01/27 00:58:04
2
3 Modified: ChangeLog
4 Added: megaglest-data-3.9.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.11 games-strategy/megaglest-data/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest-data/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest-data/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest-data/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest-data/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 21 Nov 2013 17:22:33 -0000 1.10
24 +++ ChangeLog 27 Jan 2014 00:58:04 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-strategy/megaglest-data
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest-data/ChangeLog,v 1.10 2013/11/21 17:22:33 hasufell Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest-data/ChangeLog,v 1.11 2014/01/27 00:58:04 hasufell Exp $
31 +
32 +*megaglest-data-3.9.1 (27 Jan 2014)
33 +
34 + 27 Jan 2014; Julian Ospald <hasufell@g.o> +megaglest-data-3.9.1.ebuild:
35 + version bump
36
37 21 Nov 2013; Julian Ospald <hasufell@g.o> megaglest-data-3.9.0.ebuild:
38 fix dep wrt #492206
39
40
41
42 1.1 games-strategy/megaglest-data/megaglest-data-3.9.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest-data/megaglest-data-3.9.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest-data/megaglest-data-3.9.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: megaglest-data-3.9.1.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-strategy/megaglest-data/megaglest-data-3.9.1.ebuild,v 1.1 2014/01/27 00:58:04 hasufell Exp $
52
53 EAPI=5
54 inherit cmake-utils games
55
56 MY_PN="megaglest"
57 DESCRIPTION="Data files for the cross-platform 3D realtime strategy game MegaGlest"
58 HOMEPAGE="http://www.megaglest.org/"
59 SRC_URI="https://github.com/MegaGlest/megaglest-data/releases/download/${PV}/megaglest-data-${PV}.tar.xz"
60
61 LICENSE="CC-BY-SA-3.0"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc"
65
66 RDEPEND="~games-strategy/megaglest-${PV}"
67
68 DOCS=( docs/AUTHORS.data.txt docs/CHANGELOG.txt docs/README.txt )
69
70 S=${WORKDIR}/${MY_PN}-${PV}
71
72 src_configure() {
73 local mycmakeargs=(
74 -DMEGAGLEST_BIN_INSTALL_PATH="${GAMES_BINDIR}"
75 -DMEGAGLEST_DATA_INSTALL_PATH="${GAMES_DATADIR}/${MY_PN}"
76 -DMEGAGLEST_ICON_INSTALL_PATH="/usr/share/pixmaps"
77 )
78 cmake-utils_src_configure
79 }
80
81 src_compile() {
82 cmake-utils_src_compile
83 }
84
85 src_install() {
86 use doc && HTML_DOCS="docs/glest_factions/"
87
88 cmake-utils_src_install
89
90 prepgamesdirs
91
92 }