From owner-svn-ports-branches@freebsd.org Sat Mar 10 07:03:22 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 949E0F2A545; Sat, 10 Mar 2018 07:03:22 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47CC4870A5; Sat, 10 Mar 2018 07:03:22 +0000 (UTC) (envelope-from antoine@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4287026BC; Sat, 10 Mar 2018 07:03:22 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2A73MNs019790; Sat, 10 Mar 2018 07:03:22 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2A73MBi019789; Sat, 10 Mar 2018 07:03:22 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201803100703.w2A73MBi019789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 10 Mar 2018 07:03:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464045 - branches/2018Q1/devel/ispc X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q1/devel/ispc X-SVN-Commit-Revision: 464045 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 07:03:22 -0000 Author: antoine Date: Sat Mar 10 07:03:21 2018 New Revision: 464045 URL: https://svnweb.freebsd.org/changeset/ports/464045 Log: MFH: r460800 BUILD_DEPENDS against `devel/llvm' was not sufficient, since ISPC binary is actually linked to libLLVM.so. Make it LIB_DEPENDS and thus try to unbreak `graphics/embree'. Reported by: pkg-fallout Modified: branches/2018Q1/devel/ispc/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/devel/ispc/Makefile ============================================================================== --- branches/2018Q1/devel/ispc/Makefile Sat Mar 10 06:46:00 2018 (r464044) +++ branches/2018Q1/devel/ispc/Makefile Sat Mar 10 07:03:21 2018 (r464045) @@ -4,7 +4,7 @@ PORTNAME= ispc DISTVERSIONPREFIX= v DISTVERSION= 1.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= only available for x86 architectures -BUILD_DEPENDS= clang${CLANG_VERSION}:devel/llvm${CLANG_VERSION} +LIB_DEPENDS= libLLVM.so:devel/llvm${CLANG_VERSION} USES= bison gmake python:build shebangfix USE_GITHUB= yes