svn commit: r464045 - branches/2018Q1/devel/ispc

Antoine Brodin antoine at FreeBSD.org
Sat Mar 10 07:03:22 UTC 2018


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 at 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


More information about the svn-ports-all mailing list