mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
media-libs/libwebp: 0.6.0 (bug #623398)
Package-Manager: Portage-2.3.6, Repoman-2.3.3
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST libwebp-0.5.2.tar.gz 1221153 SHA256 b75310c810b3eda222c77f6d6c26b061240e3d9060095de44b2c1bae291ecdef SHA512 f0d798e0ef8b58bc159c53214a62b29dff4309ced9efd7c5f0e6f837877906db8318c4c3453f92725ef6f2b069b931ce3e7961ca26db723a31eedc7b52988de2 WHIRLPOOL 9b1af454257315026b71d7faa7b1af560cced9387298c669cf3773802088f1865f0388c3776c895906ccff35ee20ac8e03a3505b8e13a0e4aea4aaaec970d0db
|
||||
DIST libwebp-0.6.0.tar.gz 1302881 SHA256 c928119229d4f8f35e20113ffb61f281eda267634a8dc2285af4b0ee27cf2b40 SHA512 be8eb9a3ddd3dec57f9f573d076ef97b17ea18de7e58e08e3fcb26456262394e9bb663c883d34f1aee0a91f23568e61c5ec4a7d0429cc385c009bf088ce6a1a4 WHIRLPOOL c0ebbd89adf1e1f0b1da60a1864ef9a3cecf0012ba6828f9db1d4d94006571b6dd93e7a1b714a1a63b888475e84038e615b6d6711acf92495e8fc46573e56edf
|
||||
|
||||
69
media-libs/libwebp/libwebp-0.6.0.ebuild
Normal file
69
media-libs/libwebp/libwebp-0.6.0.ebuild
Normal file
@@ -0,0 +1,69 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit autotools eutils libtool multilib-minimal
|
||||
|
||||
DESCRIPTION="A lossy image compression format"
|
||||
HOMEPAGE="https://developers.google.com/speed/webp/download"
|
||||
SRC_URI="http://downloads.webmproject.org/releases/webp/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/7" # subslot = libwebp soname version
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~m68k-mint"
|
||||
IUSE="cpu_flags_x86_avx2 cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 experimental gif +jpeg neon opengl +png static-libs swap-16bit-csp tiff"
|
||||
|
||||
# TODO: dev-lang/swig bindings in swig/ subdirectory
|
||||
RDEPEND="gif? ( media-libs/giflib:= )
|
||||
jpeg? ( virtual/jpeg:0= )
|
||||
opengl? (
|
||||
media-libs/freeglut
|
||||
virtual/opengl
|
||||
)
|
||||
png? ( media-libs/libpng:0= )
|
||||
tiff? ( media-libs/tiff:0= )"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
ECONF_SOURCE=${S}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Fix libtool relinking, bug 499270.
|
||||
#elibtoolize
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local args=(
|
||||
--enable-libwebpmux
|
||||
--enable-libwebpdemux
|
||||
--enable-libwebpdecoder
|
||||
$(use_enable static-libs static)
|
||||
$(use_enable swap-16bit-csp)
|
||||
$(use_enable experimental)
|
||||
$(use_enable jpeg)
|
||||
$(use_enable png)
|
||||
$(use_enable opengl gl)
|
||||
$(use_enable tiff)
|
||||
|
||||
$(use_enable cpu_flags_x86_avx2 avx2)
|
||||
$(use_enable cpu_flags_x86_sse2 sse2)
|
||||
$(use_enable cpu_flags_x86_sse4_1 sse4.1)
|
||||
$(use_enable neon)
|
||||
|
||||
# Only used for gif2webp binary wrt #486646
|
||||
$(multilib_native_use_enable gif)
|
||||
)
|
||||
|
||||
econf "${args[@]}"
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
prune_libtool_files
|
||||
dodoc AUTHORS ChangeLog doc/*.txt NEWS README{,.mux}
|
||||
}
|
||||
Reference in New Issue
Block a user