Bug 182163 - graphics/webp missing dependency on graphics/tiff
Summary: graphics/webp missing dependency on graphics/tiff
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Johan van Selst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-16 19:00 UTC by Pawel Pekala
Modified: 2013-10-06 17:50 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Pawel Pekala freebsd_committer freebsd_triage 2013-09-16 19:00:00 UTC
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
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-16 19:00:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->johans

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-06 17:43:26 UTC
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"
Comment 3 Johan van Selst freebsd_committer freebsd_triage 2013-10-06 17:44:05 UTC
State Changed
From-To: open->closed

Fixed now. Thanks for the report.