From owner-svn-ports-head@FreeBSD.ORG Fri Feb 21 18:35:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FCF1EB2; Fri, 21 Feb 2014 18:35:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A5251DEC; Fri, 21 Feb 2014 18:35:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1LIZu4I098061; Fri, 21 Feb 2014 18:35:56 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1LIZu6D098060; Fri, 21 Feb 2014 18:35:56 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201402211835.s1LIZu6D098060@svn.freebsd.org> From: John Marino Date: Fri, 21 Feb 2014 18:35:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345526 - head/math/abakus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 18:35:56 -0000 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