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/mana: ChangeLog mana-0.6.1.ebuild
Date: Mon, 29 Jul 2013 21:25:27
Message-Id: 20130729212524.23A042171D@flycatcher.gentoo.org
1 hasufell 13/07/29 21:25:24
2
3 Modified: ChangeLog mana-0.6.1.ebuild
4 Log:
5 fix bug 428316
6
7 (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
8
9 Revision Changes Path
10 1.15 games-rpg/mana/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/mana/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/mana/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/mana/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-rpg/mana/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 5 Aug 2012 11:55:24 -0000 1.14
23 +++ ChangeLog 29 Jul 2013 21:25:23 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-rpg/mana
26 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/mana/ChangeLog,v 1.14 2012/08/05 11:55:24 hasufell Exp $
28 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/mana/ChangeLog,v 1.15 2013/07/29 21:25:23 hasufell Exp $
30 +
31 + 29 Jul 2013; Julian Ospald <hasufell@g.o> mana-0.6.1.ebuild,
32 + +files/mana-0.6.1-Fix-missing-virtual-destructors-and-guichan-use.patch,
33 + +files/mana-0.6.1-Import-cstdint-for-int64_t.patch,
34 + +files/mana-0.6.1-Trick-gcc-into-importing-C99-stdint.h-when-C-11-is-n.patch:
35 + fix bug 428316
36
37 05 Aug 2012; Julian Ospald <hasufell@g.o> metadata.xml:
38 add myself as maintainer
39
40
41
42 1.4 games-rpg/mana/mana-0.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/mana/mana-0.6.1.ebuild?rev=1.4&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/mana/mana-0.6.1.ebuild?rev=1.4&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/mana/mana-0.6.1.ebuild?r1=1.3&r2=1.4
47
48 Index: mana-0.6.1.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/games-rpg/mana/mana-0.6.1.ebuild,v
51 retrieving revision 1.3
52 retrieving revision 1.4
53 diff -u -r1.3 -r1.4
54 --- mana-0.6.1.ebuild 13 Jul 2012 13:58:36 -0000 1.3
55 +++ mana-0.6.1.ebuild 29 Jul 2013 21:25:23 -0000 1.4
56 @@ -1,8 +1,8 @@
57 -# Copyright 1999-2012 Gentoo Foundation
58 +# Copyright 1999-2013 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/mana/mana-0.6.1.ebuild,v 1.3 2012/07/13 13:58:36 hasufell Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/mana/mana-0.6.1.ebuild,v 1.4 2013/07/29 21:25:23 hasufell Exp $
62
63 -EAPI=2
64 +EAPI=5
65 inherit eutils cmake-utils games
66
67 DESCRIPTION="A fully free and open source MMORPG game client"
68 @@ -36,7 +36,12 @@
69 nls? ( sys-devel/gettext )"
70
71 DOCS=( AUTHORS ChangeLog NEWS README )
72 -PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
73 +PATCHES=(
74 + "${FILESDIR}"/${P}-gentoo.patch
75 + "${FILESDIR}"/${P}-Fix-missing-virtual-destructors-and-guichan-use.patch
76 + "${FILESDIR}"/${P}-Trick-gcc-into-importing-C99-stdint.h-when-C-11-is-n.patch
77 + "${FILESDIR}"/${P}-Import-cstdint-for-int64_t.patch
78 + )
79
80 src_prepare() {
81 base_src_prepare
82 @@ -59,6 +64,7 @@
83 -DPKG_DATADIR="${GAMES_DATADIR}/${PN}"
84 -DPKG_BINDIR="${GAMES_BINDIR}"
85 -DWITH_BUNDLEDHEADERS=OFF
86 + -DENABLE_CPP0X=OFF
87 )
88 cmake-utils_src_configure
89 }