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-util/grfcodec: grfcodec-6.0.2.ebuild ChangeLog
Date: Tue, 29 Jan 2013 21:05:17
Message-Id: 20130129210512.F044F2171D@flycatcher.gentoo.org
1 mr_bones_ 13/01/29 21:05:12
2
3 Modified: ChangeLog
4 Added: grfcodec-6.0.2.ebuild
5 Log:
6 version bump (bug #454126)
7
8 (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.17 games-util/grfcodec/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/grfcodec/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/grfcodec/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/grfcodec/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 31 Oct 2012 13:41:33 -0000 1.16
24 +++ ChangeLog 29 Jan 2013 21:05:12 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-util/grfcodec
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v 1.16 2012/10/31 13:41:33 tupone Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v 1.17 2013/01/29 21:05:12 mr_bones_ Exp $
31 +
32 +*grfcodec-6.0.2 (29 Jan 2013)
33 +
34 + 29 Jan 2013; Michael Sterrett <mr_bones_@g.o> +grfcodec-6.0.2.ebuild:
35 + version bump (bug #454126)
36
37 31 Oct 2012; Tupone Alfredo <tupone@g.o> -grfcodec-5.1.1.ebuild:
38 Removed old version affected by Bug #320797 from Diego
39 @@ -64,4 +69,3 @@
40 +metadata.xml:
41 initial commit - ebuild and patch submitted by Locke 'Wizzleby' Shinseiko
42 via bug #300328
43 -
44
45
46
47 1.1 games-util/grfcodec/grfcodec-6.0.2.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/grfcodec/grfcodec-6.0.2.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/grfcodec/grfcodec-6.0.2.ebuild?rev=1.1&content-type=text/plain
51
52 Index: grfcodec-6.0.2.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/grfcodec-6.0.2.ebuild,v 1.1 2013/01/29 21:05:12 mr_bones_ Exp $
57
58 EAPI=5
59
60 if [ "${PV%9999}" != "${PV}" ] ; then
61 SCM=mercurial
62 EHG_REPO_URI="http://hg.openttdcoop.org/${PN}"
63 fi
64
65 inherit toolchain-funcs ${SCM}
66
67 DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
68 HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec"
69 [[ -z ${SCM} ]] && SRC_URI="http://binaries.openttd.org/extra/${PN}/${PV}/${P}-source.tar.xz"
70
71 LICENSE="GPL-2"
72 SLOT="0"
73 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
74 IUSE=""
75
76 [[ -n ${SCM} ]] && S=${WORKDIR}/${PN}
77
78 DEPEND="!games-util/nforenum
79 dev-lang/perl
80 dev-libs/boost
81 media-libs/libpng:0"
82 RDEPEND=""
83
84 src_prepare() {
85 # Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS
86 cat > Makefile.local <<-__EOF__
87 CXX = $(tc-getCXX)
88 CXXFLAGS = ${CXXFLAGS}
89 LDOPT = ${LDFLAGS}
90 UPX =
91 V = 1
92 FLAGS=
93 __EOF__
94 }
95
96 src_install() {
97 dobin ${PN} grf{diff,id,merge} nforenum
98 doman docs/*.1
99 dodoc changelog.txt docs/*.txt
100 }