Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-util/uz2unpack: ChangeLog uz2unpack-0.1.ebuild
Date: Wed, 26 Mar 2014 09:51:54
Message-Id: 20140326095150.D8B282004E@flycatcher.gentoo.org
1 ulm 14/03/26 09:51:50
2
3 Modified: ChangeLog uz2unpack-0.1.ebuild
4 Log:
5 Fix LICENSE, bug 505782. Update to EAPI 5.
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
8
9 Revision Changes Path
10 1.7 games-util/uz2unpack/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/uz2unpack/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/uz2unpack/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/uz2unpack/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 3 Nov 2009 21:40:12 -0000 1.6
23 +++ ChangeLog 26 Mar 2014 09:51:50 -0000 1.7
24 @@ -1,6 +1,9 @@
25 # ChangeLog for games-util/uz2unpack
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.6 2009/11/03 21:40:12 nyhm Exp $
28 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/ChangeLog,v 1.7 2014/03/26 09:51:50 ulm Exp $
30 +
31 + 26 Mar 2014; Ulrich Müller <ulm@g.o> uz2unpack-0.1.ebuild:
32 + Fix LICENSE, bug 505782. Update to EAPI 5.
33
34 03 Nov 2009; Tristan Heaven <nyhm@g.o> uz2unpack-0.1.ebuild:
35 Respect LDFLAGS
36
37
38
39 1.9 games-util/uz2unpack/uz2unpack-0.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild?rev=1.9&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild?rev=1.9&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild?r1=1.8&r2=1.9
44
45 Index: uz2unpack-0.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v
48 retrieving revision 1.8
49 retrieving revision 1.9
50 diff -u -r1.8 -r1.9
51 --- uz2unpack-0.1.ebuild 3 Nov 2009 21:40:12 -0000 1.8
52 +++ uz2unpack-0.1.ebuild 26 Mar 2014 09:51:50 -0000 1.9
53 @@ -1,6 +1,8 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
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 +# $Header: /var/cvsroot/gentoo-x86/games-util/uz2unpack/uz2unpack-0.1.ebuild,v 1.9 2014/03/26 09:51:50 ulm Exp $
59 +
60 +EAPI=5
61
62 inherit toolchain-funcs
63
64 @@ -8,18 +10,17 @@
65 HOMEPAGE="http://icculus.org/cgi-bin/ezmlm/ezmlm-cgi?42:mss:1013:200406:kikgppboefcimdbadcdo"
66 SRC_URI="mirror://gentoo/${P}.tar.bz2"
67
68 -LICENSE="as-is"
69 +LICENSE="public-domain"
70 SLOT="0"
71 KEYWORDS="amd64 ~ppc x86"
72 -IUSE=""
73
74 DEPEND="sys-libs/zlib"
75
76 src_compile() {
77 - emake CC="$(tc-getCC)" LDLIBS=-lz ${PN} || die "emake failed"
78 + emake CC="$(tc-getCC)" LDLIBS=-lz ${PN}
79 }
80
81 src_install() {
82 - dobin ${PN} || die "dobin failed"
83 + dobin ${PN}
84 dodoc README
85 }