From tinderbox build log: checking tiffio.h usability... no checking tiffio.h presence... no checking for tiffio.h... no configure: WARNING: tiff library not available - no tiffio.h While built from ports on my system: ldd /usr/local/bin/cwebp | grep -i tiff libtiff.so.4 => /usr/local/lib/libtiff.so.4 (0x800ca3000) pkg info -d webp-0.3.1 webp-0.3.1: png-1.5.17 jpeg-8_4
Responsible Changed From-To: freebsd-ports-bugs->johans Over to maintainer (via the GNATS Auto Assign Tool)
Author: johans Date: Sun Oct 6 16:43:13 2013 New Revision: 329602 URL: http://svnweb.freebsd.org/changeset/ports/329602 Log: - Fix dependency list [1] - Add support for gif, mux/demux/decode - Enable stage support - Bump PORTREVISION for these changes PR: ports/182163 [1] Submitted by: pawel Modified: head/graphics/webp/Makefile head/graphics/webp/pkg-plist Modified: head/graphics/webp/Makefile ============================================================================== --- head/graphics/webp/Makefile Sun Oct 6 16:37:27 2013 (r329601) +++ head/graphics/webp/Makefile Sun Oct 6 16:43:13 2013 (r329602) @@ -3,6 +3,7 @@ PORTNAME= webp PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= GOOGLE_CODE DISTNAME= lib${PORTNAME}-${PORTVERSION} @@ -10,15 +11,18 @@ DISTNAME= lib${PORTNAME}-${PORTVERSION} MAINTAINER= johans@FreeBSD.org COMMENT= Google WebP image format conversion tool -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png +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 -CONFIGURE_ARGS+=--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig -CPPFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS+=--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \ + --enable-libwebpmux \ + --enable-libwebpdemux \ + --enable-libwebpdecoder -MAN1= cwebp.1 dwebp.1 - -NO_STAGE= yes .include <bsd.port.mk> Modified: head/graphics/webp/pkg-plist ============================================================================== --- head/graphics/webp/pkg-plist Sun Oct 6 16:37:27 2013 (r329601) +++ head/graphics/webp/pkg-plist Sun Oct 6 16:43:13 2013 (r329602) @@ -1,11 +1,35 @@ -bin/dwebp bin/cwebp +bin/dwebp +bin/gif2webp +bin/webpmux include/webp/decode.h -include/webp/types.h +include/webp/demux.h include/webp/encode.h +include/webp/mux.h +include/webp/mux_types.h +include/webp/types.h +lib/libwebp.a +lib/libwebp.la lib/libwebp.so lib/libwebp.so.4 -lib/libwebp.la -lib/libwebp.a +lib/libwebpdecoder.a +lib/libwebpdecoder.la +lib/libwebpdecoder.so +lib/libwebpdecoder.so.0 +lib/libwebpdemux.a +lib/libwebpdemux.la +lib/libwebpdemux.so +lib/libwebpdemux.so.0 +lib/libwebpmux.a +lib/libwebpmux.la +lib/libwebpmux.so +lib/libwebpmux.so.0 libdata/pkgconfig/libwebp.pc +libdata/pkgconfig/libwebpdecoder.pc +libdata/pkgconfig/libwebpdemux.pc +libdata/pkgconfig/libwebpmux.pc +man/man1/cwebp.1.gz +man/man1/dwebp.1.gz +man/man1/gif2webp.1.gz +man/man1/webpmux.1.gz @dirrm include/webp _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Fixed now. Thanks for the report.