mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
69fcd76f9c
- Add support for gif, mux/demux/decode - Enable stage support - Bump PORTREVISION for these changes PR: ports/182163 [1] Submitted by: pawel
29 lines
696 B
Makefile
29 lines
696 B
Makefile
# Created by: johans
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= webp
|
|
PORTVERSION= 0.3.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= GOOGLE_CODE
|
|
DISTNAME= lib${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Google WebP image format conversion tool
|
|
|
|
LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \
|
|
libpng15.so:${PORTSDIR}/graphics/png \
|
|
libgif.so:${PORTSDIR}/graphics/giflib \
|
|
libtiff.so:${PORTSDIR}/graphics/tiff
|
|
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS+=--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \
|
|
--enable-libwebpmux \
|
|
--enable-libwebpdemux \
|
|
--enable-libwebpdecoder
|
|
|
|
.include <bsd.port.mk>
|