From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 22 13:20:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDD253FA for ; Thu, 22 May 2014 13:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BEBE42132 for ; Thu, 22 May 2014 13:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4MDK2Jo088119 for ; Thu, 22 May 2014 13:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4MDK2dv088118; Thu, 22 May 2014 13:20:02 GMT (envelope-from gnats) Date: Thu, 22 May 2014 13:20:02 GMT Message-Id: <201405221320.s4MDK2dv088118@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/189644: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 13:20:02 -0000 The following reply was made to PR ports/189644; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/189644: commit references a PR Date: Thu, 22 May 2014 13:16:45 +0000 (UTC) Author: bsam Date: Thu May 22 13:16:37 2014 New Revision: 354835 URL: http://svnweb.freebsd.org/changeset/ports/354835 QAT: https://qat.redports.org/buildarchive/r354835/ Log: graphics/pfstools: stagify and more . stagify; . use new LIB_DEPENDS syntax; . incorporate USES=gmake libtool. While here: . add LICENSE (LGPL21); . bump PORTREVISION. PR: ports/189644 Submitted by: "Daniel O'Connor" (maintainer) Modified: head/graphics/pfstools/Makefile head/graphics/pfstools/pkg-plist Modified: head/graphics/pfstools/Makefile ============================================================================== --- head/graphics/pfstools/Makefile Thu May 22 12:55:52 2014 (r354834) +++ head/graphics/pfstools/Makefile Thu May 22 13:16:37 2014 (r354835) @@ -3,13 +3,15 @@ PORTNAME= pfstools PORTVERSION= 1.6.4 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= graphics MASTER_SITES= SF MAINTAINER= darius@dons.net.au COMMENT= Tools for manipulating HDR images and video frames +LICENSE= LGPL21 + RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash PFS_CPPFLAGS= -I${LOCALBASE}/include @@ -24,8 +26,7 @@ CONFIGURE_ARGS= --disable-jpeghdr --disa CONFIGURE_ENV= PKG_CONFIG_PATH="${LOCALBASE}/libdata/pkgconfig" CPPFLAGS+= ${PFS_CPPFLAGS} LDFLAGS+= ${PFS_LDFLAGS} -USE_AUTOTOOLS= libtool -USE_GMAKE= yes +USES= gmake libtool USE_LDCONFIG= yes USES= pkgconfig @@ -34,46 +35,11 @@ OCTAVE_DESC= Compile octave interface fu OPTIONS_DEFAULT= TIFF -MAN1= pfsin.1 \ - pfsout.1 \ - pfsinppm.1 \ - pfsinexr.1 \ - pfsinrgbe.1 \ - pfsintiff.1 \ - pfsoutppm.1 \ - pfsoutexr.1 \ - pfsoutffmpeg.1 \ - pfsinpfm.1 \ - pfsoutpfm.1 \ - pfsinmulti.1 \ - pfsinimgmagick.1 \ - pfsoutimgmagick.1 \ - pfsinjpeghdr.1 \ - pfsoutjpeghdr.1 \ - pfsindcraw.1 \ - pfsgamma.1 \ - pfsclamp.1 \ - pfstag.1 \ - pfssize.1 \ - pfsextractchannels.1 \ - pfspanoramic.1 \ - pfsrotate.1 \ - pfsflip.1 \ - pfscut.1 \ - pfspad.1 \ - pfscat.1 \ - pfsabsolute.1 -MLINKS= pfsoutppm.1 \ - pfsouttiff.1 \ - pfsoutppm.1 \ - pfsoutrgbe.1 - -NO_STAGE= yes .include .if ${PORT_OPTIONS:MNETPBM} CONFIGURE_ARGS+=--enable-ppm -LIB_DEPENDS+= netpbm.1:${PORTSDIR}/graphics/netpbm +LIB_DEPENDS+= libnetpbm.so:${PORTSDIR}/graphics/netpbm PLIST_SUB+= PPM="" .else CONFIGURE_ARGS+=--disable-ppm @@ -84,7 +50,7 @@ PLIST_SUB+= PPM="@comment " PFS_CPPFLAGS+= ${PTHREAD_CFLAGS} PFS_LDFLAGS+= ${PTHREAD_LIBS} CONFIGURE_ARGS+=--enable-openexr --with-exrdir=${LOCALBASE}/include/OpenEXR -LIB_DEPENDS+= IlmImf:${PORTSDIR}/graphics/OpenEXR +LIB_DEPENDS+= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR PLIST_SUB+= EXR="" .else CONFIGURE_ARGS+=--disable-openexr @@ -93,7 +59,7 @@ PLIST_SUB+= EXR="@comment " .if ${PORT_OPTIONS:MTIFF} CONFIGURE_ARGS+=--enable-tiff -LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff +LIB_DEPENDS+= libtiff.so:${PORTSDIR}/graphics/tiff PLIST_SUB+= TIFF="" .else CONFIGURE_ARGS+=--disable-tiff @@ -105,7 +71,7 @@ PLIST_SUB+= QT="@comment " .if ${PORT_OPTIONS:MIMAGEMAGICK} CONFIGURE_ARGS+=--enable-imagemagick -LIB_DEPENDS+= Magick++.5:${PORTSDIR}/graphics/ImageMagick +LIB_DEPENDS+= libMagick++.so:${PORTSDIR}/graphics/ImageMagick PLIST_SUB+= IM="" .else CONFIGURE_ARGS+=--disable-imagemagick Modified: head/graphics/pfstools/pkg-plist ============================================================================== --- head/graphics/pfstools/pkg-plist Thu May 22 12:55:52 2014 (r354834) +++ head/graphics/pfstools/pkg-plist Thu May 22 13:16:37 2014 (r354835) @@ -40,6 +40,37 @@ lib/libpfs-1.2.la lib/libpfs-1.2.so lib/libpfs-1.2.so.0 libdata/pkgconfig/pfs.pc +man/man1/pfsabsolute.1.gz +man/man1/pfscat.1.gz +man/man1/pfsclamp.1.gz +man/man1/pfscut.1.gz +man/man1/pfsextractchannels.1.gz +man/man1/pfsflip.1.gz +man/man1/pfsgamma.1.gz +man/man1/pfsin.1.gz +man/man1/pfsindcraw.1.gz +man/man1/pfsinexr.1.gz +man/man1/pfsinimgmagick.1.gz +man/man1/pfsinjpeghdr.1.gz +man/man1/pfsinmulti.1.gz +man/man1/pfsinpfm.1.gz +man/man1/pfsinppm.1.gz +man/man1/pfsinrgbe.1.gz +man/man1/pfsintiff.1.gz +man/man1/pfsout.1.gz +man/man1/pfsoutexr.1.gz +man/man1/pfsoutffmpeg.1.gz +man/man1/pfsoutimgmagick.1.gz +man/man1/pfsoutjpeghdr.1.gz +man/man1/pfsoutpfm.1.gz +man/man1/pfsoutppm.1.gz +man/man1/pfsoutrgbe.1.gz +man/man1/pfsouttiff.1.gz +man/man1/pfspad.1.gz +man/man1/pfspanoramic.1.gz +man/man1/pfsrotate.1.gz +man/man1/pfssize.1.gz +man/man1/pfstag.1.gz %%OCTAVE%%@cwd %%OCTAVE_BASE%% %%OCTAVE%%libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%BUILD%%/pfstools/pfsclose.oct %%OCTAVE%%libexec/octave/%%OCTAVE_VERSION%%/site/oct/%%BUILD%%/pfstools/pfsget.oct _______________________________________________ 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"