Date: Fri, 21 Feb 2014 18:35:56 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345526 - head/math/abakus Message-ID: <201402211835.s1LIZu6D098060@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402211835.s1LIZu6D098060>