svn commit: r345526 - head/math/abakus

John Marino marino at FreeBSD.org
Fri Feb 21 18:35:56 UTC 2014


Author: marino
Date: Fri Feb 21 18:35:55 2014
New Revision: 345526
URL: http://svnweb.freebsd.org/changeset/ports/345526
QAT: https://qat.redports.org/buildarchive/r345526/

Log:
  math/abakus: Use absolute path of flex during specification
  
  Since flex is in base, specifying "flex" in BUILD_DEPENDS does nothing;
  the requirement is satisfied by the base flex and the ports version is
  not brought in.  One problem: the abakus makefile uses the absolute path
  of flex, so it has to be brought in.

Modified:
  head/math/abakus/Makefile

Modified: head/math/abakus/Makefile
==============================================================================
--- head/math/abakus/Makefile	Fri Feb 21 18:34:27 2014	(r345525)
+++ head/math/abakus/Makefile	Fri Feb 21 18:35:55 2014	(r345526)
@@ -12,7 +12,7 @@ COMMENT=	Simple KDE Calculator
 
 LICENSE=	GPLv2
 
-BUILD_DEPENDS=	flex:${PORTSDIR}/textproc/flex
+BUILD_DEPENDS=	${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
 LIB_DEPENDS=	libmpfr.so:${PORTSDIR}/math/mpfr
 
 USE_BZIP2=	yes


More information about the svn-ports-all mailing list