From owner-svn-ports-head@FreeBSD.ORG Wed Dec 24 20:02:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76CC6359; Wed, 24 Dec 2014 20:02:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 62EAC2FAC; Wed, 24 Dec 2014 20:02:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBOK25B8020355; Wed, 24 Dec 2014 20:02:05 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBOK25VX020354; Wed, 24 Dec 2014 20:02:05 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201412242002.sBOK25VX020354@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 24 Dec 2014 20:02:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375484 - head/graphics/tif22pnm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Dec 2014 20:02:05 -0000 Author: antoine Date: Wed Dec 24 20:02:04 2014 New Revision: 375484 URL: https://svnweb.freebsd.org/changeset/ports/375484 QAT: https://qat.redports.org/buildarchive/r375484/ Log: Properly support png 1.5 Modified: head/graphics/tif22pnm/Makefile Modified: head/graphics/tif22pnm/Makefile ============================================================================== --- head/graphics/tif22pnm/Makefile Wed Dec 24 19:53:51 2014 (r375483) +++ head/graphics/tif22pnm/Makefile Wed Dec 24 20:02:04 2014 (r375484) @@ -12,7 +12,7 @@ COMMENT= Converts TIFF-sampled images to LICENSE= GPLv2 -LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ +LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff PROJECTHOST= sam2p @@ -31,8 +31,8 @@ do-build: cd ${WRKSRC} \ && ${CC} ${CFLAGS} -DNDEBUG -I${LOCALBASE}/include \ ${TIF22PNM_SRCS} -o tif22pnm -L${LOCALBASE}/lib -ltiff \ - && ${CC} ${CFLAGS} -DNDEBUG `pkg-config libpng15 --cflags` \ - ${PNG2PNM_SRCS} -o png22pnm `pkg-config libpng15 --libs` -lm + && ${CC} ${CFLAGS} -DNDEBUG `pkg-config libpng --cflags` \ + ${PNG2PNM_SRCS} -o png22pnm `pkg-config libpng --libs` -lm do-install: ${INSTALL_PROGRAM} ${WRKSRC}/png22pnm ${STAGEDIR}${PREFIX}/bin