Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/babl: ChangeLog babl-0.1.6.ebuild
Date: Sun, 01 Jan 2012 12:38:03
Message-Id: 20120101123754.04A472004C@flycatcher.gentoo.org
1 sping 12/01/01 12:37:54
2
3 Modified: ChangeLog
4 Added: babl-0.1.6.ebuild
5 Log:
6 media-libs/babl: 0.1.6
7
8 (Portage version: 2.1.10.43/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.32 media-libs/babl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/babl/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/babl/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/babl/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 22 Dec 2011 10:38:01 -0000 1.31
24 +++ ChangeLog 1 Jan 2012 12:37:53 -0000 1.32
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/babl
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v 1.31 2011/12/22 10:38:01 scarabeus Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/ChangeLog,v 1.32 2012/01/01 12:37:53 sping Exp $
31 +
32 +*babl-0.1.6 (01 Jan 2012)
33 +
34 + 01 Jan 2012; Sebastian Pipping <sping@g.o> +babl-0.1.6.ebuild,
35 + +files/babl-0.1.6-introspection.patch:
36 + Bump to 0.1.6: bump dependency version, port patch
37
38 22 Dec 2011; Tomáš Chvátal <scarabeus@g.o> -babl-0.0.22.ebuild:
39 remove old
40
41
42
43 1.1 media-libs/babl/babl-0.1.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/babl/babl-0.1.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/babl/babl-0.1.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: babl-0.1.6.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/babl/babl-0.1.6.ebuild,v 1.1 2012/01/01 12:37:53 sping Exp $
53
54 EAPI=3
55
56 inherit autotools eutils
57
58 DESCRIPTION="A dynamic, any to any, pixel format conversion library"
59 HOMEPAGE="http://www.gegl.org/babl/"
60 SRC_URI="ftp://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2"
61
62 LICENSE="LGPL-3"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
65 IUSE="altivec +introspection sse mmx"
66
67 RDEPEND="introspection? ( >=dev-libs/gobject-introspection-0.10 )"
68 DEPEND="${RDEPEND}"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${P}-introspection.patch
72 eautoreconf
73 }
74
75 src_configure() {
76 # Automagic rsvg support is just for website generation we do not call,
77 # so we don't need to fix it
78 # w3m is used for dist target thus no issue for us that it is automagically
79 # detected
80 econf \
81 --disable-static \
82 --disable-maintainer-mode \
83 $(use_enable altivec) \
84 $(use_enable introspection) \
85 $(use_enable mmx) \
86 $(use_enable sse)
87 # TODO expose --without-vala ?
88 }
89
90 src_install() {
91 emake install DESTDIR="${D}" || die "emake install failed"
92 find "${ED}" -name '*.la' -delete
93 dodoc AUTHORS ChangeLog README NEWS || die "dodoc failed"
94 }