Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Dec 2013 21:34:00 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r336291 - head/devel/creduce
Message-ID:  <201312122134.rBCLY05U094015@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Thu Dec 12 21:34:00 2013
New Revision: 336291
URL: http://svnweb.freebsd.org/changeset/ports/336291

Log:
  devel/creduce: fix dependencies
  
  I had forgotten a += so the run depends were wrong.
  Further, the dep on clang won't work correctly since a version bump on clang
  
  Reported by:	brooks (mostly)

Modified:
  head/devel/creduce/Makefile

Modified: head/devel/creduce/Makefile
==============================================================================
--- head/devel/creduce/Makefile	Thu Dec 12 21:10:36 2013	(r336290)
+++ head/devel/creduce/Makefile	Thu Dec 12 21:34:00 2013	(r336291)
@@ -12,14 +12,15 @@ COMMENT=	Produces small test cases
 
 LICENSE=	BSD2CLAUSE
 
-BUILD_DEPENDS=	clang32=3.2:${PORTSDIR}/lang/clang32
-RUN_DEPENDS=	clang32=3.2:${PORTSDIR}/lang/clang32
-RUN_DEPENDS=	topformflat:${PORTSDIR}/devel/delta \
+BUILD_DEPENDS=	llvm-config32:${PORTSDIR}/lang/clang32
+RUN_DEPENDS=	llvm-config32:${PORTSDIR}/lang/clang32 \
+		topformflat:${PORTSDIR}/devel/delta \
 		astyle:${PORTSDIR}/devel/astyle \
 		p5-Benchmark-Timer>=0:${PORTSDIR}/devel/p5-Benchmark-Timer \
 		p5-Exporter-Lite>=0:${PORTSDIR}/devel/p5-Exporter-Lite \
 		p5-File-Which>=0:${PORTSDIR}/sysutils/p5-File-Which \
-		p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common
+		p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common \
+		devel/p5-Sys-Cpu>=0:${PORTSDIR}/devel/p5-Sys-Cpu
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	csmith-project



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