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 /graphics | |
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 'graphics')
-rw-r--r-- | graphics/netpbm/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index ae5c4733629..8b2a3ebb359 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.117 2005/06/30 15:58:59 minskim Exp $ +# $NetBSD: Makefile,v 1.118 2005/07/15 20:14:03 jlam Exp $ DISTNAME= netpbm-10.26.11 CATEGORIES= graphics @@ -11,9 +11,7 @@ COMMENT= Toolkit for conversion of images between different formats PKG_INSTALLATION_TYPES= overwrite pkgviews -USE_TOOLS+= bash gmake lex perl - -TOOLS_DEPMETHOD.bash= DEPENDS +USE_TOOLS+= bash:run gmake lex perl INSTALL_TARGET= install-dev install-run MAKE_ENV+= INSTALL="${INSTALL}" STRIPFLAG="${_STRIPFLAG_INSTALL}" \ |