svn commit: r336291 - head/devel/creduce

Eitan Adler eadler at FreeBSD.org
Thu Dec 12 21:34:01 UTC 2013


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


More information about the svn-ports-head mailing list