Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libwebp/
Date: Wed, 26 Feb 2020 12:56:55
Message-Id: 1582721801.a4b5ab14dfc27fc1e242c8be612750bb5e55d297.polynomial-c@gentoo
1 commit: a4b5ab14dfc27fc1e242c8be612750bb5e55d297
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 26 12:56:28 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 26 12:56:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b5ab14
7
8 media-libs/libwebp: Bump to version 1.1.0
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-libs/libwebp/Manifest | 1 +
14 media-libs/libwebp/libwebp-1.1.0.ebuild | 70 +++++++++++++++++++++++++++++++++
15 2 files changed, 71 insertions(+)
16
17 diff --git a/media-libs/libwebp/Manifest b/media-libs/libwebp/Manifest
18 index d30e1e2bd81..619de6de1d0 100644
19 --- a/media-libs/libwebp/Manifest
20 +++ b/media-libs/libwebp/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libwebp-1.0.2.tar.gz 4036397 BLAKE2B 708c1083f62bdb3526f8319d9b6ce1e8aeba2bc785105ff7db07c9c7041311cedcfff000de5b8fd8e93550fc86ec149f6dd4a21f576709b80cb6a4b20ddd2863 SHA512 e095b8fdf0096395daf12892b3b74c472868e727f23640ba7aa5922a5a028b778a6a60d8a94f696f6c0ca49577dfc9a0b599ecb74ad831ade48c6db812b71d2e
23 DIST libwebp-1.0.3.tar.gz 4029909 BLAKE2B c2b7f65515e455658153ef3042c50d35f3a1e11668f3c75bdcedeee91d232d8724ca34cad0b893912463efc28658b48ff7ea08d98d7f02050a831f50d77691a4 SHA512 3ccdc62e5906f8de791053560e932b39df3cfdd7793617bd4562b7d95e2f6feac1535bc035e1b02591cab14b117ab15e51af6f9e4e3af1df0869c63945ec86b9
24 +DIST libwebp-1.1.0.tar.gz 4033877 BLAKE2B ac6c2267f43ba42079975938c8fecb75237a494ab8a4ca71b68a49c3d219afa92079fd94431ccbcc363a1e6aef890642a658f429b8d75cd90dd5d735fa37dcef SHA512 c8440059a985587d4876a5e7fc2d07523bc7f582a04ee5dab0ef07df32b9635b907224de2cc15246c831dd5d9215569770196626badccc3171fe2832d7cb4549
25
26 diff --git a/media-libs/libwebp/libwebp-1.1.0.ebuild b/media-libs/libwebp/libwebp-1.1.0.ebuild
27 new file mode 100644
28 index 00000000000..f9a7a0e88f0
29 --- /dev/null
30 +++ b/media-libs/libwebp/libwebp-1.1.0.ebuild
31 @@ -0,0 +1,70 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit autotools libtool multilib-minimal
37 +
38 +MY_P="${P/_/-}"
39 +
40 +DESCRIPTION="A lossy image compression format"
41 +HOMEPAGE="https://developers.google.com/speed/webp/download"
42 +SRC_URI="http://downloads.webmproject.org/releases/webp/${MY_P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0/7" # subslot = libwebp soname version
46 +[[ "${PV}" = *_rc* ]] || \
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 +IUSE="cpu_flags_arm_neon cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg opengl +png static-libs swap-16bit-csp tiff"
49 +
50 +# TODO: dev-lang/swig bindings in swig/ subdirectory
51 +RDEPEND="gif? ( media-libs/giflib:= )
52 + jpeg? ( virtual/jpeg:0= )
53 + opengl? (
54 + media-libs/freeglut
55 + virtual/opengl
56 + )
57 + png? ( media-libs/libpng:0= )
58 + tiff? ( media-libs/tiff:0= )"
59 +DEPEND="${RDEPEND}"
60 +
61 +S="${WORKDIR}/${MY_P}"
62 +
63 +src_prepare() {
64 + default
65 +
66 + # Fix libtool relinking, bug 499270.
67 + #elibtoolize
68 + eautoreconf
69 +}
70 +
71 +multilib_src_configure() {
72 + local args=(
73 + --enable-libwebpmux
74 + --enable-libwebpdemux
75 + --enable-libwebpdecoder
76 + $(use_enable static-libs static)
77 + $(use_enable swap-16bit-csp)
78 + $(use_enable jpeg)
79 + $(use_enable png)
80 + $(use_enable opengl gl)
81 + $(use_enable tiff)
82 +
83 + $(use_enable cpu_flags_x86_sse2 sse2)
84 + $(use_enable cpu_flags_x86_sse4_1 sse4.1)
85 + $(use_enable cpu_flags_arm_neon neon)
86 +
87 + # Only used for gif2webp binary wrt #486646
88 + $(multilib_native_use_enable gif)
89 + )
90 +
91 + ECONF_SOURCE="${S}" econf "${args[@]}"
92 +}
93 +
94 +multilib_src_install() {
95 + emake DESTDIR="${D}" install
96 +}
97 +
98 +multilib_src_install_all() {
99 + find "${ED}" -type f -name "*.la" -delete || die
100 + dodoc AUTHORS ChangeLog doc/*.txt NEWS README{,.mux}
101 +}