Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Mar 2013 11:34:34 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r313636 - head/Mk
Message-ID:  <201303081134.r28BYYPh084885@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Mar  8 11:34:33 2013
New Revision: 313636
URL: http://svnweb.freebsd.org/changeset/ports/313636

Log:
  Remove old USE_BISON related code from bsd.port.mk

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Fri Mar  8 11:32:11 2013	(r313635)
+++ head/Mk/bsd.port.mk	Fri Mar  8 11:34:33 2013	(r313636)
@@ -351,10 +351,6 @@ FreeBSD_MAINTAINER=	portmgr@FreeBSD.org
 #				  this is for users, not for port maintainers.  This
 #				  should not be used in Makefile.
 ##
-# USE_BISON		- Implies that the port uses bison in one way or another:
-#				  'build', 'run', 'both', implying build,
-#				  runtime, and both build/run dependencies
-##
 # USE_IMAKE		- If set, this port uses imake.
 # XMKMF			- Set to path of `xmkmf' if not in $PATH
 #				  Default: xmkmf -a
@@ -2011,22 +2007,6 @@ RUN_DEPENDS+=	${_GL_${_component}_RUN_DE
 . endfor
 .endif
 
-.if defined(USE_BISON)
-_BISON_DEPENDS=	bison:${PORTSDIR}/devel/bison
-
-. if ${USE_BISON:L} == "build"
-BUILD_DEPENDS+= ${_BISON_DEPENDS}
-. elif ${USE_BISON:L} == "run"
-RUN_DEPENDS+=	${_BISON_DEPENDS}
-. elif ${USE_BISON:L} == "both"
-BUILD_DEPENDS+= ${_BISON_DEPENDS}
-RUN_DEPENDS+=	${_BISON_DEPENDS}
-. else
-IGNORE=	uses unknown USE_BISON construct
-. endif
-
-.endif
-
 .if defined(WITH_PKGNG)
 .include "${PORTSDIR}/Mk/bsd.pkgng.mk"
 .endif



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