svn commit: r419564 - head/sysutils/bstack
John Marino
marino at FreeBSD.org
Thu Aug 4 00:05:07 UTC 2016
Author: marino
Date: Thu Aug 4 00:05:05 2016
New Revision: 419564
URL: https://svnweb.freebsd.org/changeset/ports/419564
Log:
sysutils/bstack: properly register gdb as RUN_DEPENDS
bstack requires the ports version of gdb, but the was RUN_DEPENDS was
specified, the base gdb satisfied the requirement, thus ports gdb is
never registered as a dependency. Specify using the full path of gdb
to rectify + revbump.
approved by: just-fix-it
Modified:
head/sysutils/bstack/Makefile
Modified: head/sysutils/bstack/Makefile
==============================================================================
--- head/sysutils/bstack/Makefile Wed Aug 3 23:47:55 2016 (r419563)
+++ head/sysutils/bstack/Makefile Thu Aug 4 00:05:05 2016 (r419564)
@@ -2,6 +2,7 @@
PORTNAME= bstack
PORTVERSION= 0.1
+PORTREVISION= 1
CATEGORIES= sysutils
MAINTAINER= luca.pizzamiglio at gmail.com
@@ -9,7 +10,7 @@ COMMENT= Debug tool that shows the stack
LICENSE= BSD3CLAUSE
-RUN_DEPENDS= gdb:devel/gdb
+RUN_DEPENDS= ${LOCALBASE}/bin/gdb:devel/gdb
USE_GITHUB= yes
GH_ACCOUNT= pizzamig
More information about the svn-ports-head
mailing list