From owner-svn-ports-all@FreeBSD.ORG Thu May 15 20:34:15 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25A10EF; Thu, 15 May 2014 20:34:15 +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 12E5A20B7; Thu, 15 May 2014 20:34:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4FKYELT092096; Thu, 15 May 2014 20:34:14 GMT (envelope-from thierry@svn.freebsd.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4FKYEHo092095; Thu, 15 May 2014 20:34:14 GMT (envelope-from thierry@svn.freebsd.org) Message-Id: <201405152034.s4FKYEHo092095@svn.freebsd.org> From: Thierry Thomas Date: Thu, 15 May 2014 20:34:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354173 - head/graphics/cimg 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.18 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: Thu, 15 May 2014 20:34:15 -0000 Author: thierry Date: Thu May 15 20:34:14 2014 New Revision: 354173 URL: http://svnweb.freebsd.org/changeset/ports/354173 QAT: https://qat.redports.org/buildarchive/r354173/ Log: Previously `GraphicsMagick-config --ldflags' provided flags -Wl,-rpath=/usr/local/lib/gcc47 -L/usr/local/lib/gcc47 but this has been removed. Force them by declaring USES=fortran. Modified: head/graphics/cimg/Makefile Modified: head/graphics/cimg/Makefile ============================================================================== --- head/graphics/cimg/Makefile Thu May 15 19:55:12 2014 (r354172) +++ head/graphics/cimg/Makefile Thu May 15 20:34:14 2014 (r354173) @@ -63,6 +63,11 @@ RUN_DEPENDS+= medcon:${PORTSDIR}/graphic LIB_DEPENDS+= libavformat.so:${PORTSDIR}/multimedia/ffmpeg . endif +. if !defined(WITHOUT_LAPACK) +# Don't really need Fortran, but required to link with blas/lapack +USES+= fortran +. endif + DOCBASE= README.txt PROGS= CImg_demo captcha curve_editor2d dtmri_view3d \ edge_explorer2d fade_images gaussian_fit1d generate_loop_macros \