diff options
author | jlam <jlam@pkgsrc.org> | 2005-07-15 20:14:02 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-07-15 20:14:02 +0000 |
commit | fcc213da631d84f91e18cb0123d519de24c8e5b5 (patch) | |
tree | 891fd0228b3d843aa6c33a088cc94bc8bb92dcd4 /www | |
parent | 35f017ce7ae6e18e6102f62c4167973050ee3fca (diff) | |
download | pkgsrc-fcc213da631d84f91e18cb0123d519de24c8e5b5.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 'www')
-rw-r--r-- | www/squid/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/www/squid/Makefile b/www/squid/Makefile index 92c6e160f9e..a62c61204f5 100644 --- a/www/squid/Makefile +++ b/www/squid/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.153 2005/06/07 14:19:10 taca Exp $ +# $NetBSD: Makefile,v 1.154 2005/07/15 20:14:03 jlam Exp $ DISTNAME= squid-2.5.STABLE10 PKGNAME= squid-2.5.10 @@ -33,8 +33,7 @@ DOCFILES= ChangeLog RELEASENOTES.html doc/debug-sections.txt PKG_SYSCONFSUBDIR?= squid USE_PKGINSTALL= yes -USE_TOOLS+= perl -TOOLS_DEPMETHOD.perl?= DEPENDS +USE_TOOLS+= perl:run GNU_CONFIGURE= yes CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} \ --localstatedir=${DATADIR} |