From owner-svn-ports-all@freebsd.org Fri Jun 2 20:52:47 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79772AFB51E; Fri, 2 Jun 2017 20:52:47 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 466E37711F; Fri, 2 Jun 2017 20:52:47 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v52KqkQk032140; Fri, 2 Jun 2017 20:52:46 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v52KqkPu032139; Fri, 2 Jun 2017 20:52:46 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201706022052.v52KqkPu032139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 2 Jun 2017 20:52:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442462 - head/graphics/enblend X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2017 20:52:47 -0000 Author: mandree Date: Fri Jun 2 20:52:46 2017 New Revision: 442462 URL: https://svnweb.freebsd.org/changeset/ports/442462 Log: Add libpng to LIB_DEPENDS, fixing poudriere builds. This fixes the following poudriere build failure in the configure stage (in a fully patched amd64-based 10.3-RELEASE jail): [...] checking for jpeglib.h... yes checking png.h usability... no checking png.h presence... no checking for png.h... no configure: error: libpng-devel header files are required to compile Enblend. ===> Script "configure" failed unexpectedly. PR: 219569 Reported by: Stefan Ehmann (with different patch) Approved by: portmgr (blanket for trivial and tested fixes) Modified: head/graphics/enblend/Makefile Modified: head/graphics/enblend/Makefile ============================================================================== --- head/graphics/enblend/Makefile Fri Jun 2 20:27:10 2017 (r442461) +++ head/graphics/enblend/Makefile Fri Jun 2 20:52:46 2017 (r442462) @@ -20,7 +20,8 @@ LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ libtiff.so:graphics/tiff \ libboost_filesystem.so:devel/boost-libs \ libvigraimpex.so:graphics/vigra \ - libgsl.so:math/gsl + libgsl.so:math/gsl \ + libpng.so:graphics/png RUN_DEPENDS= OpenEXR>=1.0:graphics/OpenEXR BROKEN_powerpc64= fails to configure: libvigraimpex is required to compile Enblend