Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Feb 2018 09:44:56 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r460800 - head/devel/ispc
Message-ID:  <201802030944.w139iuKR086407@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Sat Feb  3 09:44:55 2018
New Revision: 460800
URL: https://svnweb.freebsd.org/changeset/ports/460800

Log:
  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:	portscout

Modified:
  head/devel/ispc/Makefile

Modified: head/devel/ispc/Makefile
==============================================================================
--- head/devel/ispc/Makefile	Sat Feb  3 09:02:17 2018	(r460799)
+++ head/devel/ispc/Makefile	Sat Feb  3 09:44:55 2018	(r460800)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802030944.w139iuKR086407>