Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ucl: ChangeLog ucl-1.03-r1.ebuild
Date: Mon, 27 Jun 2011 17:18:24
Message-Id: 20110627171808.E295020054@flycatcher.gentoo.org
1 binki 11/06/27 17:18:08
2
3 Modified: ChangeLog
4 Added: ucl-1.03-r1.ebuild
5 Log:
6 Respect CFLAGS (CCASFLAGS) which compiling assembly files. Fixes building with portage-multilib.
7
8 (Portage version: 2.2.0_alpha41-r1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.32 dev-libs/ucl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 13 Jan 2011 20:54:18 -0000 1.31
24 +++ ChangeLog 27 Jun 2011 17:18:08 -0000 1.32
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/ucl
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.31 2011/01/13 20:54:18 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ChangeLog,v 1.32 2011/06/27 17:18:08 binki Exp $
30 +
31 +*ucl-1.03-r1 (27 Jun 2011)
32 +
33 + 27 Jun 2011; Nathan Phillip Brink <binki@g.o> +ucl-1.03-r1.ebuild,
34 + +files/ucl-1.03-CFLAGS.patch:
35 + Respect CFLAGS (CCASFLAGS) which compiling assembly files. Fixes building
36 + with portage-multilib.
37
38 13 Jan 2011; Brent Baude <ranger@g.o> ucl-1.03.ebuild:
39 stable ppc, bug 350761
40
41
42
43 1.1 dev-libs/ucl/ucl-1.03-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ucl-1.03-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ucl/ucl-1.03-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ucl-1.03-r1.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/dev-libs/ucl/ucl-1.03-r1.ebuild,v 1.1 2011/06/27 17:18:08 binki Exp $
53
54 EAPI=4
55
56 inherit autotools eutils
57
58 DESCRIPTION="the UCL Compression Library"
59 HOMEPAGE="http://www.oberhumer.com/opensource/ucl/"
60 SRC_URI="http://www.oberhumer.com/opensource/ucl/download/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 IUSE=""
66
67 src_prepare() {
68 epatch "${FILESDIR}"/${P}-CFLAGS.patch
69
70 # lzo (and ucl) have some weird sort of mfx_* set of autoconf macros
71 # which may only be distributed with lzo itself? Rescue them and
72 # place them into acinclude.m4 because there doesn't seem to be an
73 # m4/...
74 sed -n -e '/^AC_DEFUN.*mfx_/,/^])#$/p' aclocal.m4 > acinclude.m4 || die "Unable to rescue mfx_* autoconf macros."
75 eautoreconf
76 }
77
78 src_configure() {
79 econf --enable-shared
80 }
81
82 src_install() {
83 emake install DESTDIR="${D}" || die
84 dodoc AUTHORS NEWS README THANKS TODO
85 }