Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/babl: babl-0.1.0.ebuild ChangeLog
Date: Tue, 01 Sep 2009 03:41:15
Message-Id: E1MiP3y-000187-Mg@stork.gentoo.org
1 patrick 09/09/01 08:50:02
2
3 Modified: ChangeLog
4 Added: babl-0.1.0.ebuild
5 Log:
6 Bump to 0.1.0, fixes half of #281264
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 media-libs/babl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/babl/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/babl/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/babl/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 6 Jul 2009 21:56:22 -0000 1.14
23 +++ ChangeLog 1 Sep 2009 08:50:02 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/babl
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v 1.14 2009/07/06 21:56:22 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v 1.15 2009/09/01 08:50:02 patrick Exp $
29 +
30 +*babl-0.1.0 (01 Sep 2009)
31 +
32 + 01 Sep 2009; Patrick Lauer <patrick@g.o> +babl-0.1.0.ebuild,
33 + +files/babl-0.1.0-build-fixes.patch:
34 + Bump to 0.1.0, fixes half of #281264
35
36 06 Jul 2009; Jeroen Roovers <jer@g.o> babl-0.0.22.ebuild:
37 Stable for HPPA (bug #258344).
38
39
40
41 1.1 media-libs/babl/babl-0.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/babl/babl-0.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/babl/babl-0.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: babl-0.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/babl/babl-0.1.0.ebuild,v 1.1 2009/09/01 08:50:02 patrick Exp $
51
52 EAPI="2"
53
54 inherit eutils autotools
55
56 DESCRIPTION="A dynamic, any to any, pixel format conversion library"
57 HOMEPAGE="http://www.gegl.org/babl/"
58 SRC_URI="ftp://ftp.gtk.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2"
59
60 LICENSE="LGPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="sse mmx"
64
65 DEPEND="virtual/libc"
66
67 src_prepare() {
68 epatch "${FILESDIR}/${P}-build-fixes.patch"
69 eautoreconf
70 }
71
72 src_configure() {
73 econf \
74 $(use_enable mmx) \
75 $(use_enable sse)
76 }
77
78 src_install() {
79 emake install DESTDIR="${D}" || die "emake install failed"
80 find "${D}" -name '*.la' -delete
81 dodoc AUTHORS ChangeLog README NEWS || die "dodoc failed"
82 }