Gentoo Archives: gentoo-commits

From: Stephan Hartmann <sultan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libwebp/
Date: Tue, 21 Dec 2021 17:26:16
Message-Id: 1640107548.65efe812cfeb4699a8e0eb2874bc7e40b4801424.sultan@gentoo
1 commit: 65efe812cfeb4699a8e0eb2874bc7e40b4801424
2 Author: Stephan Hartmann <sultan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 21 17:24:53 2021 +0000
4 Commit: Stephan Hartmann <sultan <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 21 17:25:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65efe812
7
8 media-libs/libwebp: bump to 1.2.1
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Stephan Hartmann <sultan <AT> gentoo.org>
12
13 media-libs/libwebp/Manifest | 1 +
14 media-libs/libwebp/libwebp-1.2.1.ebuild | 70 +++++++++++++++++++++++++++++++++
15 2 files changed, 71 insertions(+)
16
17 diff --git a/media-libs/libwebp/Manifest b/media-libs/libwebp/Manifest
18 index 7c3e1b53ad82..5555a38f5c89 100644
19 --- a/media-libs/libwebp/Manifest
20 +++ b/media-libs/libwebp/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libwebp-1.1.0.tar.gz 4033877 BLAKE2B ac6c2267f43ba42079975938c8fecb75237a494ab8a4ca71b68a49c3d219afa92079fd94431ccbcc363a1e6aef890642a658f429b8d75cd90dd5d735fa37dcef SHA512 c8440059a985587d4876a5e7fc2d07523bc7f582a04ee5dab0ef07df32b9635b907224de2cc15246c831dd5d9215569770196626badccc3171fe2832d7cb4549
23 DIST libwebp-1.2.0.tar.gz 4092120 BLAKE2B 213b2385f646dd0fbaa7c9103b0d33a9cb5e7285d9df91107db722f514428ab8cc896704d71a3913ca1aedffeb706fcda4c7a59a3960ebc21c74ca9422632605 SHA512 c46b41899a543cc80914c89646dd607dbb5d025a9727dd83ef70994b9310eedc697666bd812141a90aa16632a9a354a031d9360a9ee1112295c7e154e69f0b74
24 +DIST libwebp-1.2.1.tar.gz 4100806 BLAKE2B 6bbc6dd1a3ec094a6ad0045fd483bcce055c5f3dd15022595de090c4719e5b7bfec60818a8c88886ab2546325a515526d750c9fd31017278ac6d747218570f5e SHA512 5208ac9532c89ea9fec01122cb307afacdbf5c501ed1c6056e9ffc98e2a3386e637224e0301da88ae3a32aa0c210364e1e4eac79487e465ef9e54eb9b1af80aa
25
26 diff --git a/media-libs/libwebp/libwebp-1.2.1.ebuild b/media-libs/libwebp/libwebp-1.2.1.ebuild
27 new file mode 100644
28 index 000000000000..ac28d36ff548
29 --- /dev/null
30 +++ b/media-libs/libwebp/libwebp-1.2.1.ebuild
31 @@ -0,0 +1,70 @@
32 +# Copyright 1999-2021 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 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~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 +}