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: Sun, 18 Nov 2018 21:06:37
Message-Id: 1542575180.63c48c6f0b7b3f76f640e8f45c8e09336c76a799.sping@gentoo
1 commit: 63c48c6f0b7b3f76f640e8f45c8e09336c76a799
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 18 20:04:06 2018 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 18 21:06:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c48c6f
7
8 media-libs/babl: 0.1.58
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 media-libs/babl/Manifest | 1 +
14 media-libs/babl/babl-0.1.58.ebuild | 57 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 58 insertions(+)
16
17 diff --git a/media-libs/babl/Manifest b/media-libs/babl/Manifest
18 index 67c61e1a28a..7d4b66af762 100644
19 --- a/media-libs/babl/Manifest
20 +++ b/media-libs/babl/Manifest
21 @@ -2,3 +2,4 @@ DIST babl-0.1.12.tar.bz2 642234 BLAKE2B 2e60f7bc5edd55d78e3e588c1c777e3aff6953ff
22 DIST babl-0.1.18.tar.bz2 734225 BLAKE2B 8fc7f0c25adbde4c88fef6ef104de232f5dd074c6262a6e47f177be9362d62dc8cf30e098f3f341fe57f164383eb2fc5054d7796214464482c1ef684f09d1cbd SHA512 70cf2db7294d5744e30519ccc9bfd795c9ef4bae4425bdf8719ce0028c6bb81deca7b2c0550e98877beddc7f5d5ce71b9ba5318416dc32c3087a13d8eee42304
23 DIST babl-0.1.38.tar.bz2 653047 BLAKE2B 8bc43a7e0b7265f72122743ff4b3e25825e4bbe6797a6e077de16d47239a67cc8fcb93253f54de31012cfb1622cafed2c220cba5cb3cdd9eb1599e5d11b4000f SHA512 4b55b666170322adad4b4624c98110d7a34c496f7aadb22a53c09d1ce5ae518122c2105fd2cb2a057e752fe1540beb703f8192e48e7c43601342a75db2bfdca0
24 DIST babl-0.1.56.tar.bz2 673080 BLAKE2B a172819342e6982249734d2e5a0014bc9feaf882788c50c72494adac7160e9cca4b8d45411c110217b8bd8642fe46689295801f1207e54de1219be5e13a475b0 SHA512 e3d6192126df136537ce13b2858a7ec078251093762052bb3edd826a26ab36fee73375ee854bdf423f22fc30f23bcafb3ae46e986ed6555f3ef0809b12c612ba
25 +DIST babl-0.1.58.tar.bz2 686407 BLAKE2B 89e93f9152adddd5761728e0234e0139b8e7a4611fd0b082998f34bfca6cfc155d35e3d9b66d777022948d6b46e8d6e12af739d43138139b361c63879f39f1da SHA512 4747e9432072ab786f096f18fabe307587f307369ca89ec7ece2ae8db59ea8f618a67c6c9ed93a8f21533bd91e00db05653b37b923dfee074d7c4381452324ce
26
27 diff --git a/media-libs/babl/babl-0.1.58.ebuild b/media-libs/babl/babl-0.1.58.ebuild
28 new file mode 100644
29 index 00000000000..8d6d747f60a
30 --- /dev/null
31 +++ b/media-libs/babl/babl-0.1.58.ebuild
32 @@ -0,0 +1,57 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit ltprune
39 +
40 +if [[ ${PV} == *9999* ]]; then
41 + inherit autotools git-r3
42 + EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/babl.git"
43 + SRC_URI=""
44 +else
45 + inherit autotools
46 + SRC_URI="http://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2"
47 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
48 +fi
49 +
50 +DESCRIPTION="A dynamic, any to any, pixel format conversion library"
51 +HOMEPAGE="http://www.gegl.org/babl/"
52 +
53 +LICENSE="LGPL-3"
54 +SLOT="0"
55 +IUSE="altivec cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_mmx cpu_flags_x86_f16c"
56 +
57 +RDEPEND=""
58 +DEPEND="${RDEPEND}
59 + >=sys-devel/libtool-2.2
60 + virtual/pkgconfig
61 +"
62 +
63 +src_prepare() {
64 + default
65 + eautoreconf
66 +}
67 +
68 +src_configure() {
69 + # Automagic rsvg support is just for website generation we do not call,
70 + # so we don't need to fix it
71 + # w3m is used for dist target thus no issue for us that it is automagically
72 + # detected
73 + econf \
74 + --disable-docs \
75 + --disable-static \
76 + --disable-maintainer-mode \
77 + $(use_enable altivec) \
78 + $(use_enable cpu_flags_x86_f16c f16c) \
79 + $(use_enable cpu_flags_x86_mmx mmx) \
80 + $(use_enable cpu_flags_x86_sse sse) \
81 + $(use_enable cpu_flags_x86_sse2 sse2) \
82 + $(use_enable cpu_flags_x86_sse3 sse3) \
83 + $(use_enable cpu_flags_x86_sse4_1 sse4_1)
84 +}
85 +
86 +src_install() {
87 + default
88 + prune_libtool_files --all
89 +}