Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ucl: ChangeLog ucl-1.03.ebuild
Date: Thu, 06 Jan 2011 02:10:00
Message-Id: 20110106020950.C382F20057@flycatcher.gentoo.org
1 vapier 11/01/06 02:09:50
2
3 Modified: ChangeLog ucl-1.03.ebuild
4 Log:
5 Clean up; convert to EAPI=2 and emake.
6
7 (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 dev-libs/ucl/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 25 Oct 2009 20:18:33 -0000 1.28
23 +++ ChangeLog 6 Jan 2011 02:09:50 -0000 1.29
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-libs/ucl
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.28 2009/10/25 20:18:33 tove Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.29 2011/01/06 02:09:50 vapier Exp $
30 +
31 + 06 Jan 2011; Mike Frysinger <vapier@g.o> ucl-1.03.ebuild:
32 + Clean up; convert to EAPI=2 and emake.
33
34 25 Oct 2009; Torsten Veller <tove@g.o> metadata.xml:
35 Remove drizzt from metadata.xml (#149111)
36
37
38
39 1.9 dev-libs/ucl/ucl-1.03.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild?rev=1.9&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild?rev=1.9&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild?r1=1.8&r2=1.9
44
45 Index: ucl-1.03.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild,v
48 retrieving revision 1.8
49 retrieving revision 1.9
50 diff -u -r1.8 -r1.9
51 --- ucl-1.03.ebuild 25 Feb 2009 12:17:34 -0000 1.8
52 +++ ucl-1.03.ebuild 6 Jan 2011 02:09:50 -0000 1.9
53 @@ -1,10 +1,11 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild,v 1.8 2009/02/25 12:17:34 drizzt Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03.ebuild,v 1.9 2011/01/06 02:09:50 vapier Exp $
59
60 -inherit flag-o-matic eutils
61 +EAPI="2"
62 +inherit eutils
63
64 -DESCRIPTION="UCL: The UCL Compression Library"
65 +DESCRIPTION="the UCL Compression Library"
66 HOMEPAGE="http://www.oberhumer.com/opensource/ucl/"
67 SRC_URI="http://www.oberhumer.com/opensource/ucl/download/${P}.tar.gz"
68
69 @@ -13,13 +14,15 @@
70 KEYWORDS="alpha ~amd64 hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
71 IUSE=""
72
73 -src_compile() {
74 - epunt_cxx #76771
75 +src_prepare() {
76 + epunt_cxx
77 +}
78 +
79 +src_configure() {
80 econf --enable-shared || die
81 - emake || die
82 }
83
84 src_install() {
85 - make install DESTDIR="${D}" || die
86 + emake install DESTDIR="${D}" || die
87 dodoc AUTHORS NEWS README THANKS TODO
88 }