Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/babl/
Date: Fri, 04 Dec 2015 23:03:23
Message-Id: 1449270187.4ebc9d32ff5f11ede606c04298d88f1199993cd6.sping@gentoo
1 commit: 4ebc9d32ff5f11ede606c04298d88f1199993cd6
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 26 11:43:14 2015 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 4 23:03:07 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ebc9d32
7
8 media-libs/babl: version bump to 0.1.14
9
10 Package-Manager: portage-2.2.25
11 RepoMan-Options: --force
12
13 media-libs/babl/Manifest | 1 +
14 media-libs/babl/babl-0.1.14.ebuild | 54 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/media-libs/babl/Manifest b/media-libs/babl/Manifest
18 index b8463b9..e0313e5 100644
19 --- a/media-libs/babl/Manifest
20 +++ b/media-libs/babl/Manifest
21 @@ -1,2 +1,3 @@
22 DIST babl-0.1.10.tar.bz2 449537 SHA256 943fc36ceac7dd25bc928256bc7b535a42989c6b971578146869eee5fe5955f4 SHA512 2950d94c255ee05d405e003a46138da0f4e0cad65e2d2a882089b788c2deac0524014f7c5758c3097253bdbebaded433caf0447c7d218c9cc96798df9e6f0c92 WHIRLPOOL a71907a531bc71c7ac0c84a197a559c50321a5d96b5d846083935390890ef116780d49bd458577aef0e948395dc14897e6fbbc75478b2a59d57d4381cf7f8db8
23 DIST babl-0.1.12.tar.bz2 642234 SHA256 2f802b7f1a17b72c10bf0fe1e69b7a888cf7ce62b7cf1537b030f7f88d55a407 SHA512 b69c8e3870f25372b2223aa4a716383af30342822461fc847039af964cdd194603dbc327a5c3547369d64b206b54280a5a9a227197ca6b7bcfbfa8e2e560df6a WHIRLPOOL b1a170492f1c1e6f030f418cc66c3be02cd2bd7e10896a416b5feaf2d7aa82de4fa15c9d2a65e6e1038ab6822e4dc3333f96102e18d757a6b1e07f4017b4beba
24 +DIST babl-0.1.14.tar.bz2 718238 SHA256 e6dcb112c8f8f75471823fdcc5a6a65f753b4d0e96e377979ea01a5d6fad7d4f SHA512 fb7c48738b968c2cf01aab20b50c7768501b73c8c34957ef500cf7a77bb2dce519ede34463a8a100037533d5f3566e1cd23d898c41eb29fc01620a0dde131398 WHIRLPOOL e85a868e751f490a9dee002bd93214033f0fbaab7dbd65c0062c55f98af810be83e6899804bdd2c4e45f2625f2e75a36784890c950e34b35baf0104c69bd2a79
25
26 diff --git a/media-libs/babl/babl-0.1.14.ebuild b/media-libs/babl/babl-0.1.14.ebuild
27 new file mode 100644
28 index 0000000..ce739ef
29 --- /dev/null
30 +++ b/media-libs/babl/babl-0.1.14.ebuild
31 @@ -0,0 +1,54 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +inherit eutils
39 +
40 +if [[ ${PV} == *9999* ]]; then
41 + inherit autotools git-r3
42 + EGIT_REPO_URI="git://git.gnome.org/babl"
43 + SRC_URI=""
44 +else
45 + SRC_URI="http://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2"
46 + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
47 +fi
48 +
49 +DESCRIPTION="A dynamic, any to any, pixel format conversion library"
50 +HOMEPAGE="http://www.gegl.org/babl/"
51 +
52 +LICENSE="LGPL-3"
53 +SLOT="0"
54 +IUSE="altivec cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_mmx"
55 +
56 +RDEPEND=""
57 +DEPEND="${RDEPEND}
58 + >=sys-devel/libtool-2.2
59 + virtual/pkgconfig
60 +"
61 +
62 +src_prepare() {
63 + epatch_user
64 + [[ ${PV} == *9999* ]] && eautoreconf
65 +}
66 +
67 +src_configure() {
68 + # Automagic rsvg support is just for website generation we do not call,
69 + # so we don't need to fix it
70 + # w3m is used for dist target thus no issue for us that it is automagically
71 + # detected
72 + econf \
73 + --disable-docs \
74 + --disable-static \
75 + --disable-maintainer-mode \
76 + $(use_enable altivec) \
77 + $(use_enable cpu_flags_x86_mmx mmx) \
78 + $(use_enable cpu_flags_x86_sse sse) \
79 + $(use_enable cpu_flags_x86_sse sse2)
80 +}
81 +
82 +src_install() {
83 + default
84 + prune_libtool_files --all
85 +}