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/uz2unpack: ChangeLog uz2unpack-0.1.ebuild
Date: Tue, 03 Nov 2009 21:40:15
Message-Id: E1N5R6r-00058O-9c@stork.gentoo.org
1 nyhm 09/11/03 21:40:13
2
3 Modified: ChangeLog uz2unpack-0.1.ebuild
4 Log:
5 Respect LDFLAGS
6 (Portage version: 2.2_rc48/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 games-util/uz2unpack/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/uz2unpack/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/uz2unpack/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/uz2unpack/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 8 Feb 2007 22:45:18 -0000 1.5
22 +++ ChangeLog 3 Nov 2009 21:40:12 -0000 1.6
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-util/uz2unpack
25 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.5 2007/02/08 22:45:18 wolf31o2 Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.6 2009/11/03 21:40:12 nyhm Exp $
29 +
30 + 03 Nov 2009; Tristan Heaven <nyhm@g.o> uz2unpack-0.1.ebuild:
31 + Respect LDFLAGS
32
33 08 Feb 2007; Chris Gianelloni <wolf31o2@g.o> ChangeLog:
34 Regenerate digest in Manifest2 format.
35
36
37
38 1.8 games-util/uz2unpack/uz2unpack-0.1.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild?rev=1.8&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild?rev=1.8&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild?r1=1.7&r2=1.8
43
44 Index: uz2unpack-0.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v
47 retrieving revision 1.7
48 retrieving revision 1.8
49 diff -u -r1.7 -r1.8
50 --- uz2unpack-0.1.ebuild 5 Feb 2006 04:47:31 -0000 1.7
51 +++ uz2unpack-0.1.ebuild 3 Nov 2009 21:40:12 -0000 1.8
52 @@ -1,12 +1,12 @@
53 -# Copyright 1999-2005 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v 1.7 2006/02/05 04:47:31 mr_bones_ Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v 1.8 2009/11/03 21:40:12 nyhm Exp $
58
59 inherit toolchain-funcs
60
61 DESCRIPTION="UZ2 Decompressor for UT2003/UT2004"
62 HOMEPAGE="http://icculus.org/cgi-bin/ezmlm/ezmlm-cgi?42:mss:1013:200406:kikgppboefcimdbadcdo"
63 -SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/${PN}/${P}.tar.bz2"
64 +SRC_URI="mirror://gentoo/${P}.tar.bz2"
65
66 LICENSE="as-is"
67 SLOT="0"
68 @@ -15,16 +15,11 @@
69
70 DEPEND="sys-libs/zlib"
71
72 -pkg_setup() {
73 - einfo "This package is required for ut2003 and ut2004."
74 -}
75 -
76 src_compile() {
77 - $(tc-getCC) -o ${PN} ${CFLAGS} ${PN}.c -lz || die "Error compiling"
78 + emake CC="$(tc-getCC)" LDLIBS=-lz ${PN} || die "emake failed"
79 }
80
81 src_install() {
82 - exeinto /usr/bin
83 - doexe uz2unpack || die "doexe failed"
84 + dobin ${PN} || die "dobin failed"
85 dodoc README
86 }