summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2006-11-16 14:57:47 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2006-11-16 14:57:47 +0000
commita5043a677c75ae55a941f219594bbcd9af539ba6 (patch)
tree4573d34619938cfca85455d2cddbd83998799713 /Mk
parent- New maintainer (diff)
- new option USE_GNUSTEP_LOCAL_TOOLS
Notes
Notes: svn path=/head/; revision=177387
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.gnustep.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/Mk/bsd.gnustep.mk b/Mk/bsd.gnustep.mk
index 793c00647675..8f1c526835bb 100644
--- a/Mk/bsd.gnustep.mk
+++ b/Mk/bsd.gnustep.mk
@@ -81,6 +81,9 @@
# USE_GNUSTEP_LOCAL_APPS+= Ink:misc/gnustep-examples
# depends on Application installed in Local directrory at runtime
#
+# USE_GNUSTEP_LOCAL_TOOLS+= zillion:net/zillion
+# depends on Tool installed in Local directrory at runtime
+#
# ---------------------------------------------------------------------------
.if !defined(_POSTMKINCLUDED)
@@ -296,6 +299,15 @@ RUN_DEPENDS+= ${GNUSTEP_PREFIX}/Local/Applications/${_GNUSTEP_DEP:C/:.*//}.app/$
.endif
# ---------------------------------------------------------------------------
+# source local tools
+#
+.if defined(USE_GNUSTEP_LOCAL_TOOLS)
+.for _GNUSTEP_DEP in ${USE_GNUSTEP_LOCAL_TOOLS}
+RUN_DEPENDS+= ${GNUSTEP_PREFIX}/Local/Tools/${_GNUSTEP_DEP:C/:.*//}:${PORTSDIR}/${_GNUSTEP_DEP:C/.*://}
+.endfor
+.endif
+
+# ---------------------------------------------------------------------------
# source GNUstep.sh
#
.if defined(USE_GNUSTEP_CONFIGURE)