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 /textproc | |
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 'textproc')
-rw-r--r-- | textproc/aspell/Makefile | 6 | ||||
-rw-r--r-- | textproc/ispell-base/Makefile | 5 | ||||
-rw-r--r-- | textproc/namazu2/Makefile | 5 |
3 files changed, 7 insertions, 9 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile index 9c815457a50..30735972a7e 100644 --- a/textproc/aspell/Makefile +++ b/textproc/aspell/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2005/06/28 14:18:55 wiz Exp $ +# $NetBSD: Makefile,v 1.35 2005/07/15 20:14:03 jlam Exp $ # DISTNAME= aspell-0.60.3 @@ -12,9 +12,9 @@ COMMENT= Spell checker with good multi-language support CONFLICTS= libpspell-[0-9]* GNU_CONFIGURE= yes -USE_TOOLS+= gmake perl +USE_TOOLS+= gmake # for bin/aspell-import -TOOLS_DEPMETHOD.perl= DEPENDS +USE_TOOLS+= perl:run USE_LIBTOOL= yes USE_LANGUAGES= c c++ diff --git a/textproc/ispell-base/Makefile b/textproc/ispell-base/Makefile index fe309c367d0..62848b3aaa6 100644 --- a/textproc/ispell-base/Makefile +++ b/textproc/ispell-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2005/07/07 12:42:20 markd Exp $ +# $NetBSD: Makefile,v 1.25 2005/07/15 20:14:03 jlam Exp $ # DISTNAME= ispell-3.3.02 @@ -12,8 +12,7 @@ COMMENT= Interactive spelling checker CONFLICTS+= ispell-[0-9]* -USE_TOOLS+= mktemp -TOOLS_DEPMETHOD.mktemp= DEPENDS +USE_TOOLS+= mktemp:run MAKE_FLAGS+= TMPDIR="${WRKDIR}" diff --git a/textproc/namazu2/Makefile b/textproc/namazu2/Makefile index 41d3a9239dd..d15e69b3523 100644 --- a/textproc/namazu2/Makefile +++ b/textproc/namazu2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2005/07/12 16:03:56 taca Exp $ +# $NetBSD: Makefile,v 1.21 2005/07/15 20:14:03 jlam Exp $ DISTNAME= namazu-2.0.14 PKGREVISION= 2 @@ -18,8 +18,7 @@ CONFLICTS+= namazu-[0-9]* USE_PKGLOCALEDIR= yes USE_PKGINSTALL= yes -USE_TOOLS= perl -TOOLS_DEPMETHOD.perl= DEPENDS +USE_TOOLS= perl:run GNU_CONFIGURE= yes USE_LANGUAGE= c USE_LIBTOOL= yes |