diff options
author | Matt Jolly <Matt.Jolly@footclan.ninja> | 2023-09-16 09:52:20 +1000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-09-17 07:15:06 +0100 |
commit | 12cc5973de5021fbaea8f37bc4f185c5854713c8 (patch) | |
tree | 28920d787bb8f4119e25a1cdaabd8e88df7bfa23 /media-libs/libwebp/libwebp-1.3.2.ebuild | |
parent | dev-ruby/twitter: enable ruby32 (diff) | |
download | gentoo-12cc5973de5021fbaea8f37bc4f185c5854713c8.tar.gz gentoo-12cc5973de5021fbaea8f37bc4f185c5854713c8.tar.bz2 gentoo-12cc5973de5021fbaea8f37bc4f185c5854713c8.zip |
media-libs/libwebp: add 1.3.2
This release came out after the last two 1.3.1 snapshots, but
only contains the CVE fix. We're _not_ vulnerable, but it's good
to be consistent and will stop anyone from claiming that we are
based simply on the version string.
Bug: https://bugs.gentoo.org/914010
Signed-off-by: Matt Jolly <Matt.Jolly@footclan.ninja>
Closes: https://github.com/gentoo/gentoo/pull/32819
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/libwebp/libwebp-1.3.2.ebuild')
-rw-r--r-- | media-libs/libwebp/libwebp-1.3.2.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/media-libs/libwebp/libwebp-1.3.2.ebuild b/media-libs/libwebp/libwebp-1.3.2.ebuild new file mode 100644 index 000000000000..533658e7e1a7 --- /dev/null +++ b/media-libs/libwebp/libwebp-1.3.2.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools multilib-minimal + +MY_P="${P/_/-}" + +DESCRIPTION="A lossy image compression format" +HOMEPAGE="https://developers.google.com/speed/webp/download" +SRC_URI="https://storage.googleapis.com/downloads.webmproject.org/releases/webp/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0/7" # subslot = libwebp soname version +if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +fi +IUSE="cpu_flags_arm_neon cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg opengl +png static-libs swap-16bit-csp tiff" + +# TODO: dev-lang/swig bindings in swig/ subdirectory +RDEPEND="gif? ( media-libs/giflib:= ) + jpeg? ( media-libs/libjpeg-turbo:= ) + opengl? ( + media-libs/freeglut + virtual/opengl + ) + png? ( media-libs/libpng:= ) + tiff? ( media-libs/tiff:= )" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-1.2.3-libpng-pkg-config.patch +) + +src_prepare() { + default + # Needed for pkg-config patch; use elibtoolize instead if that's ever dropped + eautoreconf +} + +multilib_src_configure() { + local args=( + --enable-libwebpmux + --enable-libwebpdemux + --enable-libwebpdecoder + $(use_enable static-libs static) + $(use_enable swap-16bit-csp) + $(use_enable jpeg) + $(use_enable png) + $(use_enable opengl gl) + $(use_enable tiff) + + $(use_enable cpu_flags_x86_sse2 sse2) + $(use_enable cpu_flags_x86_sse4_1 sse4.1) + $(use_enable cpu_flags_arm_neon neon) + + # Only used for gif2webp binary wrt bug #486646 + $(multilib_native_use_enable gif) + ) + + ECONF_SOURCE="${S}" econf "${args[@]}" +} + +multilib_src_install() { + emake DESTDIR="${D}" install +} + +multilib_src_install_all() { + find "${ED}" -type f -name "*.la" -delete || die + dodoc AUTHORS ChangeLog doc/*.txt NEWS README.md +} |