svn commit: r363136 - head/sysutils/cbsd

John Marino marino at FreeBSD.org
Mon Jul 28 12:29:50 UTC 2014


Author: marino
Date: Mon Jul 28 12:29:50 2014
New Revision: 363136
URL: http://svnweb.freebsd.org/changeset/ports/363136
QAT: https://qat.redports.org/buildarchive/r363136/

Log:
  sysutils/cbsd: only build on FreeBSD 10+
  
  This extends the current ignore flag to cover FreeBSD 9 as well.
  
  PR:		192185
  Submitted by:	maintainer (Oleg Ginsburg)

Modified:
  head/sysutils/cbsd/Makefile

Modified: head/sysutils/cbsd/Makefile
==============================================================================
--- head/sysutils/cbsd/Makefile	Mon Jul 28 12:29:24 2014	(r363135)
+++ head/sysutils/cbsd/Makefile	Mon Jul 28 12:29:50 2014	(r363136)
@@ -31,12 +31,8 @@ CBSD_HOME?=	${PREFIX}/cbsd
 USERS=	${PORTNAME}
 GROUPS=	${PORTNAME}
 
-.if ${OSVERSION} < 901000
-IGNORE=	does not support FreeBSD versions < 9.1
-.endif
-
-.if ${OSVERSION} < 902001
-RUN_DEPENDS+=	sysrc:${PORTSDIR}/sysutils/sysrc
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
+IGNORE=	does not support FreeBSD versions < 10.0
 .endif
 
 do-install:


More information about the svn-ports-all mailing list