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 /audio | |
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 'audio')
-rw-r--r-- | audio/distmp3/Makefile | 5 | ||||
-rw-r--r-- | audio/flac2mp3/Makefile | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/audio/distmp3/Makefile b/audio/distmp3/Makefile index 155732fd1bf..bebf542c4df 100644 --- a/audio/distmp3/Makefile +++ b/audio/distmp3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/06/16 06:57:38 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2005/07/15 20:14:02 jlam Exp $ # DISTNAME= distmp3-0.1.9 @@ -10,8 +10,7 @@ MAINTAINER= grant@NetBSD.org COMMENT= Distributed mp3 encoding across multiple hosts USE_LANGUAGES= # empty -USE_TOOLS+= perl -TOOLS_DEPMETHOD.perl= DEPENDS +USE_TOOLS+= perl:run USE_PKGINSTALL= yes NO_BUILD= yes diff --git a/audio/flac2mp3/Makefile b/audio/flac2mp3/Makefile index 95d861663ac..6715c120e97 100644 --- a/audio/flac2mp3/Makefile +++ b/audio/flac2mp3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/06/16 06:57:38 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2005/07/15 20:14:03 jlam Exp $ DISTNAME= flac2mp3 PKGNAME= flac2mp3-20041223 @@ -18,8 +18,7 @@ EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} ${WRKSRC} PKG_INSTALLATION_TYPES= overwrite pkgviews REPLACE_PERL= flac2mp3.pl -USE_TOOLS+= perl -TOOLS_DEPMETHOD.perl= DEPENDS +USE_TOOLS+= perl:run WRKSRC= ${WRKDIR} NO_BUILD= yes |