openbsd-ports/graphics/libwebp/Makefile
rsadowski 0301337395 Update to libwebp 1.2.4.
- 8/4/2022: version 1.2.4
  This is a binary compatible release.
  * restore CMake libwebpmux target name for compatibility with 1.2.2 (#575)
  * fix lossless crunch mode encoding with WEBP_REDUCE_SIZE
    (chromium: #1345547, #1345595, #1345772, #1345804)

- 6/30/2022: version 1.2.3
  This is a binary compatible release.
  * security fix for lossless encoder (#565, chromium:1313709)
  * improved progress granularity in WebPReportProgress() when using lossless
  * improved precision in Sharp YUV (-sharp_yuv) conversion
  * many corrections to webp-lossless-bitstream-spec.txt (#551)
  * crash/leak fixes on error/OOM and other bug fixes (#558, #563, #569, #573)

From Brad
2022-08-15 05:51:29 +00:00

45 lines
1013 B
Makefile
Executable File

COMMENT= Google WebP image format conversion tool
GH_ACCOUNT= webmproject
GH_PROJECT= libwebp
GH_TAGNAME= v1.2.4
CATEGORIES= graphics
SHARED_LIBS += webp 4.3 # 6.0
SHARED_LIBS += webpdecoder 2.1 # 2.0
SHARED_LIBS += webpdemux 2.0 # 2.0
SHARED_LIBS += webpmux 2.0 # 2.0
HOMEPAGE= https://developers.google.com/speed/webp/
# BSD
PERMIT_PACKAGE= Yes
WANTLIB= c gif jpeg lzma m png pthread tiff z zstd
LIB_DEPENDS= graphics/giflib \
graphics/jpeg \
graphics/png \
graphics/tiff
AUTOCONF_VERSION= 2.69
AUTOMAKE_VERSION= 1.15
CONFIGURE_STYLE=autoreconf
CONFIGURE_ARGS= --enable-everything
# this will use libSDL to build stuff under extras otherwise
# (a static webp viewer which is more or less useless, and not
# even installed by default)
CONFIGURE_ARGS += --disable-sdl
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
DEBUG_PACKAGES= ${BUILD_PACKAGES}
NO_TEST= Yes
.include <bsd.port.mk>