From owner-svn-ports-all@freebsd.org Thu Jul 6 15:08:42 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 ED584DB005D; Thu, 6 Jul 2017 15:08:42 +0000 (UTC) (envelope-from tcberner@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 B6F9C7381B; Thu, 6 Jul 2017 15:08:42 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v66F8fBq056005; Thu, 6 Jul 2017 15:08:41 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v66F8fNW056004; Thu, 6 Jul 2017 15:08:41 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201707061508.v66F8fNW056004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 6 Jul 2017 15:08:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445158 - head/graphics/kipi-plugin-removeredeyes X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/graphics/kipi-plugin-removeredeyes X-SVN-Commit-Revision: 445158 X-SVN-Commit-Repository: ports 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: Thu, 06 Jul 2017 15:08:43 -0000 Author: tcberner Date: Thu Jul 6 15:08:41 2017 New Revision: 445158 URL: https://svnweb.freebsd.org/changeset/ports/445158 Log: Make sure $LOCALBASE/lib is in the linker search paths. * Otherwise linking may fail with OpenCV was compiled with TBB. PR: 219981 Reported by: Melvyn Sopacua Modified: head/graphics/kipi-plugin-removeredeyes/Makefile Modified: head/graphics/kipi-plugin-removeredeyes/Makefile ============================================================================== --- head/graphics/kipi-plugin-removeredeyes/Makefile Thu Jul 6 15:03:05 2017 (r445157) +++ head/graphics/kipi-plugin-removeredeyes/Makefile Thu Jul 6 15:08:41 2017 (r445158) @@ -9,6 +9,10 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} LIB_DEPENDS= libopencv_legacy.so:graphics/opencv +# Ensure -L${LOCALBASE}/lib is in the linker flags, as +# the cmake files do not properly handle opencv with tbb +# enabled. +USES+= localbase:ldflags KIPI_PLUGIN= removeredeyes .include "${.CURDIR}/../digikam-kde4/Makefile.common"