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-strategy/asc: asc-2.6.0.0.ebuild ChangeLog
Date: Wed, 04 Jun 2014 21:15:37
Message-Id: 20140604211532.D0F392004E@flycatcher.gentoo.org
1 mr_bones_ 14/06/04 21:15:32
2
3 Modified: ChangeLog
4 Added: asc-2.6.0.0.ebuild
5 Log:
6 version bump (bug #512344)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.44 games-strategy/asc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/asc/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/asc/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/asc/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-strategy/asc/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 30 Oct 2012 15:07:24 -0000 1.43
24 +++ ChangeLog 4 Jun 2014 21:15:32 -0000 1.44
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-strategy/asc
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/asc/ChangeLog,v 1.43 2012/10/30 15:07:24 tupone Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/asc/ChangeLog,v 1.44 2014/06/04 21:15:32 mr_bones_ Exp $
31 +
32 +*asc-2.6.0.0 (04 Jun 2014)
33 +
34 + 04 Jun 2014; Michael Sterrett <mr_bones_@g.o> +asc-2.6.0.0.ebuild:
35 + version bump (bug #512344)
36
37 30 Oct 2012; Tupone Alfredo <tupone@g.o> asc-2.5.0.0.ebuild,
38 +files/asc-2.5.0.0-gcc47.patch:
39 @@ -203,4 +208,3 @@
40 comments should well explained and written in clean English. The details about
41 writing correct changelogs are explained in the skel.ChangeLog file which you
42 can find in the root directory of the portage repository.
43 -
44
45
46
47 1.1 games-strategy/asc/asc-2.6.0.0.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/asc/asc-2.6.0.0.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/asc/asc-2.6.0.0.ebuild?rev=1.1&content-type=text/plain
51
52 Index: asc-2.6.0.0.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/games-strategy/asc/asc-2.6.0.0.ebuild,v 1.1 2014/06/04 21:15:32 mr_bones_ Exp $
57
58 EAPI=5
59 WX_GTK_VER=2.8
60 inherit eutils toolchain-funcs flag-o-matic wxwidgets games
61
62 DESCRIPTION="turn based strategy game designed in the tradition of the Battle Isle series"
63 HOMEPAGE="http://www.asc-hq.org/"
64 SRC_URI="mirror://sourceforge/asc-hq/${P}.tar.bz2
65 http://www.asc-hq.org/music/frontiers.ogg
66 http://www.asc-hq.org/music/time_to_strike.ogg
67 http://www.asc-hq.org/music/machine_wars.ogg"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73
74 RDEPEND="app-arch/bzip2
75 media-libs/libsdl[video]
76 media-libs/libpng
77 media-libs/sdl-image[gif,jpeg,png]
78 media-libs/sdl-mixer[vorbis]
79 media-libs/sdl-sound
80 dev-libs/boost
81 dev-games/physfs
82 media-libs/xvid
83 dev-libs/expat
84 media-libs/freetype
85 dev-lang/lua
86 x11-libs/wxGTK:2.8[X]
87 dev-libs/libsigc++:1.2"
88
89 DEPEND="${RDEPEND}
90 dev-lang/perl
91 virtual/pkgconfig
92 app-arch/zip"
93
94 src_unpack() {
95 local f
96
97 unpack ${P}.tar.bz2
98 for f in ${A}
99 do
100 case ${f} in
101 *ogg)
102 cp "${DISTDIR}/${f}" "${S}/data/music" || die
103 ;;
104 esac
105 done
106 }
107
108 src_configure() {
109 # Added --disable-paraguitest for bugs 26402 and 4488
110 # Added --disable-paragui for bug 61154 since it's not really used much
111 # and the case is well documented at http://www.asc-hq.org/
112 if [[ $(gcc-major-version) -eq 4 ]] ; then
113 replace-flags -O3 -O2
114 fi
115 egamesconf \
116 --disable-paraguitest \
117 --disable-paragui \
118 --datadir="${GAMES_DATADIR_BASE}"
119 }
120
121 src_install() {
122 default
123 dohtml -r doc/*
124 prepgamesdirs
125 }