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 | e26a9ed75610d28f00b94394a6ca824ad26bb7c3 (patch) | |
tree | 891fd0228b3d843aa6c33a088cc94bc8bb92dcd4 /devel | |
parent | bf9129c41e2b7be767d2c17d60e379900e6dda5f (diff) | |
download | pkgsrc-e26a9ed75610d28f00b94394a6ca824ad26bb7c3.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 'devel')
-rw-r--r-- | devel/autoconf/Makefile | 5 | ||||
-rw-r--r-- | devel/autoconf213/Makefile | 5 | ||||
-rw-r--r-- | devel/automake/Makefile | 5 | ||||
-rw-r--r-- | devel/bison/Makefile | 5 |
4 files changed, 8 insertions, 12 deletions
diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile index 1a4475f4f17..97c931fd3ef 100644 --- a/devel/autoconf/Makefile +++ b/devel/autoconf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2005/06/15 13:27:15 wiz Exp $ +# $NetBSD: Makefile,v 1.56 2005/07/15 20:14:03 jlam Exp $ DISTNAME= autoconf-2.59 PKGREVISION= 2 @@ -10,8 +10,7 @@ MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.gnu.org/software/autoconf/autoconf.html COMMENT= Generates automatic source code configuration scripts -USE_TOOLS+= gm4 -TOOLS_DEPMETHOD.gm4= DEPENDS +USE_TOOLS+= gm4:run # The next line is for conflicts with old versions of this package, # which had autoconf-devel as PKGNAME. diff --git a/devel/autoconf213/Makefile b/devel/autoconf213/Makefile index 564a1b13a7d..c3a4c68d5f0 100644 --- a/devel/autoconf213/Makefile +++ b/devel/autoconf213/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/05/22 20:51:45 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2005/07/15 20:14:03 jlam Exp $ DISTNAME= autoconf-2.13 PKGNAME= autoconf213-2.13 @@ -10,8 +10,7 @@ MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.gnu.org/software/autoconf/autoconf.html COMMENT= Generates automatic source code configuration scripts (old version) -USE_TOOLS+= gm4 -TOOLS_DEPMETHOD.gm4= DEPENDS +USE_TOOLS+= gm4:run CONFLICTS= autoconf-devel-[0-9]* CONFLICTS= autoconf<2.50 diff --git a/devel/automake/Makefile b/devel/automake/Makefile index 5f618b1ecf7..01da182dfd4 100644 --- a/devel/automake/Makefile +++ b/devel/automake/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.65 2005/07/14 02:24:22 wiz Exp $ +# $NetBSD: Makefile,v 1.66 2005/07/15 20:14:03 jlam Exp $ # DISTNAME= automake-1.9.6 @@ -13,8 +13,7 @@ COMMENT= GNU Standards-compliant Makefile generator DEPENDS= autoconf>=2.58:../../devel/autoconf -USE_TOOLS+= gm4 -TOOLS_DEPMETHOD.gm4= DEPENDS +USE_TOOLS+= gm4:run #PKG_INSTALLATION_TYPES= overwrite pkgviews diff --git a/devel/bison/Makefile b/devel/bison/Makefile index d4c87990659..eaca7621ce7 100644 --- a/devel/bison/Makefile +++ b/devel/bison/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2005/05/22 20:51:45 jlam Exp $ +# $NetBSD: Makefile,v 1.54 2005/07/15 20:14:03 jlam Exp $ DISTNAME= bison-2.0 CATEGORIES= devel @@ -12,8 +12,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews BUILD_USES_MSGFMT= yes GNU_CONFIGURE= YES -USE_TOOLS+= gm4 -TOOLS_DEPMETHOD.gm4= DEPENDS +USE_TOOLS+= gm4:run INFO_FILES= bison.info |