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