diff options
author | rillig <rillig@pkgsrc.org> | 2007-09-10 07:00:37 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-09-10 07:00:37 +0000 |
commit | ce0b07c80b33e7f97dc6f04726b960d24c4134be (patch) | |
tree | 914078b3dbdc0ee2c1893ae103336177d0387833 /mk/tools | |
parent | 60db3b92e225109c5cc596f80eb3138c240834c0 (diff) | |
download | pkgsrc-ce0b07c80b33e7f97dc6f04726b960d24c4134be.tar.gz |
Why should we write the same code over and over again? We shouldn't.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/replace.mk | 56 |
1 files changed, 18 insertions, 38 deletions
diff --git a/mk/tools/replace.mk b/mk/tools/replace.mk index da626317829..84d60518fd9 100644 --- a/mk/tools/replace.mk +++ b/mk/tools/replace.mk @@ -1,4 +1,4 @@ -# $NetBSD: replace.mk,v 1.196 2007/08/17 20:27:32 joerg Exp $ +# $NetBSD: replace.mk,v 1.197 2007/09/10 07:00:37 rillig Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -141,43 +141,23 @@ _TOOLS_DEPMETHOD.${_t_:C/:.*//}= BUILD_DEPENDS _TOOLS_DEPMETHOD.${_t_:C/:.*//}= DEPENDS .endfor -.if !empty(_USE_TOOLS:Mbison-yacc) # bison-yacc > yacc -. if defined(_TOOLS_DEPMETHOD.bison-yacc) && \ - (${_TOOLS_DEPMETHOD.bison-yacc} == "BUILD_DEPENDS") && \ - defined(_TOOLS_DEPMETHOD.yacc) -_TOOLS_DEPMETHOD.bison-yacc= ${_TOOLS_DEPMETHOD.yacc} -. endif -.endif -.if !empty(_USE_TOOLS:Mflex) # flex > lex -. if (${_TOOLS_DEPMETHOD.flex} == "BUILD_DEPENDS") && \ - defined(_TOOLS_DEPMETHOD.lex) -_TOOLS_DEPMETHOD.flex= ${_TOOLS_DEPMETHOD.lex} -. endif -.endif -.if !empty(_USE_TOOLS:Mgawk) # gawk > awk -. if (${_TOOLS_DEPMETHOD.gawk} == "BUILD_DEPENDS") && \ - defined(_TOOLS_DEPMETHOD.awk) -_TOOLS_DEPMETHOD.gawk= ${_TOOLS_DEPMETHOD.awk} -. endif -.endif -.if !empty(_USE_TOOLS:Mgm4) # gm4 > m4 -. if (${_TOOLS_DEPMETHOD.gm4} == "BUILD_DEPENDS") && \ - defined(_TOOLS_DEPMETHOD.m4) -_TOOLS_DEPMETHOD.gm4= ${_TOOLS_DEPMETHOD.m4} -. endif -.endif -.if !empty(_USE_TOOLS:Mgsed) # gsed > sed -. if (${_TOOLS_DEPMETHOD.gsed} == "BUILD_DEPENDS") && \ - defined(_TOOLS_DEPMETHOD.sed) -_TOOLS_DEPMETHOD.gsed= ${_TOOLS_DEPMETHOD.sed} -. endif -.endif -.if !empty(_USE_TOOLS:Mgsoelim) # gsoelim > soelim -. if (${_TOOLS_DEPMETHOD.gsoelim} == "BUILD_DEPENDS") && \ - defined(_TOOLS_DEPMETHOD.soelim) -_TOOLS_DEPMETHOD.gsoelim= ${_TOOLS_DEPMETHOD.soelim} -. endif -.endif +.for pair in \ + bison-yacc:yacc \ + flex:lex \ + gawk:awk \ + gm4:m4 \ + gsed:sed \ + gsoelim:soelim +. for first in ${pair:C/:.*//} +. for second in ${pair:C/.*://} +. if !empty(_USE_TOOLS:M${first}) +. if (${_TOOLS_DEPMETHOD.${first}} == "BUILD_DEPENDS") && defined(_TOOLS_DEPMETHOD.${second}) +_TOOLS_DEPMETHOD.${first}= ${_TOOLS_DEPMETHOD.${second}} +. endif +. endif +. endfor +. endfor +.endfor ###################################################################### |