Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-util/loki_patch: ChangeLog loki_patch-20091105.ebuild
Date: Thu, 05 Nov 2009 06:33:49
Message-Id: E1N5vuk-0007Gy-Pj@stork.gentoo.org
1 nyhm 09/11/05 06:33:46
2
3 Modified: ChangeLog
4 Added: loki_patch-20091105.ebuild
5 Log:
6 Version bump, fixes bugs #251102 and #281440
7 (Portage version: 2.2_rc48/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 games-util/loki_patch/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/loki_patch/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/loki_patch/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/loki_patch/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-util/loki_patch/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 4 Mar 2008 15:53:30 -0000 1.10
23 +++ ChangeLog 5 Nov 2009 06:33:46 -0000 1.11
24 @@ -1,6 +1,13 @@
25 # ChangeLog for games-util/loki_patch
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-util/loki_patch/ChangeLog,v 1.10 2008/03/04 15:53:30 wolf31o2 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-util/loki_patch/ChangeLog,v 1.11 2009/11/05 06:33:46 nyhm Exp $
30 +
31 +*loki_patch-20091105 (05 Nov 2009)
32 +
33 + 05 Nov 2009; Tristan Heaven <nyhm@g.o> +loki_patch-20091105.ebuild,
34 + +files/loki_patch-20091105-build.patch,
35 + +files/loki_patch-20091105-patchdata.patch:
36 + Version bump, fixes bugs #251102 and #281440
37
38 04 Mar 2008; Chris Gianelloni <wolf31o2@g.o>
39 -loki_patch-20051209.ebuild:
40
41
42
43 1.1 games-util/loki_patch/loki_patch-20091105.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/loki_patch/loki_patch-20091105.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/loki_patch/loki_patch-20091105.ebuild?rev=1.1&content-type=text/plain
47
48 Index: loki_patch-20091105.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-util/loki_patch/loki_patch-20091105.ebuild,v 1.1 2009/11/05 06:33:46 nyhm Exp $
53
54 EAPI=2
55 inherit autotools eutils
56
57 DESCRIPTION="Loki Software binary patch tool"
58 HOMEPAGE="http://www.icculus.org/loki_setup/"
59 SRC_URI="mirror://gentoo/${P}.tar.bz2
60 mirror://gentoo/loki_setupdb-${PV}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE=""
66
67 RDEPEND="=dev-util/xdelta-1*
68 dev-libs/libxml2
69 dev-libs/glib:2"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 S=${WORKDIR}
74
75 src_prepare() {
76 epatch \
77 "${FILESDIR}"/${P}-build.patch \
78 "${FILESDIR}"/${P}-patchdata.patch
79 cd loki_setupdb
80 eautoreconf
81 cd "${S}"/${PN}
82 eautoreconf
83 }
84
85 src_configure() {
86 cd loki_setupdb
87 econf
88 cd "${S}"/${PN}
89 econf
90 }
91
92 src_compile() {
93 emake -C loki_setupdb || die "emake loki_setupdb failed"
94 emake -C loki_patch || die "emake loki_patch failed"
95 }
96
97 src_install() {
98 cd ${PN}
99 dobin loki_patch make_patch || die "dobin failed"
100 dodoc CHANGES NOTES README TODO
101 }