diff options
author | jlam <jlam> | 2005-07-15 20:14:02 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-07-15 20:14:02 +0000 |
commit | d4f731ff0b0cceef954e40bffd8a8c38267bcaf3 (patch) | |
tree | 891fd0228b3d843aa6c33a088cc94bc8bb92dcd4 /net | |
parent | d2eea181f0c5ef51db2ef63ecadc8d3add70bd6b (diff) | |
download | pkgsrc-d4f731ff0b0cceef954e40bffd8a8c38267bcaf3.tar.gz |
Drop support for TOOLS_DEPMETHOD.<tool>. The new way to specify a
run-time dependency (DEPENDS) on a tool is to append a ":run" modifier
to the tool name, e.g.,
USE_TOOLS+= perl:run
Tools without modifiers or with an explicit ":build" modifier will
cause build dependencies (BUILD_DEPENDS) on those tools to be added.
This makes the notation a bit more compact.
Diffstat (limited to 'net')
-rw-r--r-- | net/argus/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/argus/Makefile b/net/argus/Makefile index ca4369d694d..c5b08de6ea1 100644 --- a/net/argus/Makefile +++ b/net/argus/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2005/06/22 13:14:50 markd Exp $ +# $NetBSD: Makefile,v 1.7 2005/07/15 20:14:03 jlam Exp $ # DISTNAME= argus-3.3 @@ -18,8 +18,7 @@ DEPENDS+= p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC DEPENDS+= p5-Crypt-DES-[0-9]*:../../security/p5-Crypt-DES DEPENDS+= p5-DBI-[0-9]*:../../databases/p5-DBI -USE_TOOLS+= perl -TOOLS_DEPMETHOD.perl= DEPENDS +USE_TOOLS+= perl:run USE_PKGINSTALL= yes HAS_CONFIGURE= yes CONFIGURE_SCRIPT= ${WRKSRC}/Configure |