svn commit: r329602 - head/graphics/webp

Johan van Selst johans at FreeBSD.org
Sun Oct 6 16:43:14 UTC 2013


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 at 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


More information about the svn-ports-head mailing list