diff options
author | ghen <ghen@pkgsrc.org> | 2006-03-11 10:07:49 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-03-11 10:07:49 +0000 |
commit | 1aa1fc5d41d99327271ed23e4579be63dc6bdfa6 (patch) | |
tree | 9825bc45aa84169ac0e533e81c0c40931c03a653 /editors | |
parent | 36abc1bc1506f64f12efce7e5f890343fa4db992 (diff) | |
download | pkgsrc-1aa1fc5d41d99327271ed23e4579be63dc6bdfa6.tar.gz |
Convert all packages using REPLACE_INTERPRETER to the new variable names
without underscores (REPLACE.*.old, REPLACE.*.new, and REPLACE_FILES.*).
Also convert REPLACE.*.new= ${SH:Q} back to ${SH}, as it should not be quoted
here, if at all.
Ok with rillig.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/TeXmacs/Makefile | 30 | ||||
-rw-r--r-- | editors/ce/Makefile | 8 |
2 files changed, 19 insertions, 19 deletions
diff --git a/editors/TeXmacs/Makefile b/editors/TeXmacs/Makefile index c4e60b1735a..94069523eb8 100644 --- a/editors/TeXmacs/Makefile +++ b/editors/TeXmacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2006/03/09 14:20:59 ghen Exp $ +# $NetBSD: Makefile,v 1.56 2006/03/11 10:07:49 ghen Exp $ DISTNAME= TeXmacs-1.0.6-src PKGNAME= ${DISTNAME:S/-src//} @@ -25,20 +25,20 @@ SUBST_FILES.init= plugins/python/progs/init-python.scm SUBST_SED.init= -e 's,@PYTHONBIN@,${PYTHONBIN},g' REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= /bin/bash -_REPLACE.bash.new= /bin/sh -_REPLACE_FILES.bash+= plugins/dratex/bin/tm_dratex -_REPLACE_FILES.bash+= plugins/eukleides/bin/tm_eukleides -_REPLACE_FILES.bash+= plugins/gnuplot/bin/tm_gnuplot -_REPLACE_FILES.bash+= plugins/lisp/bin/tm_lisp -_REPLACE_FILES.bash+= plugins/lush/bin/tm_lush -_REPLACE_FILES.bash+= plugins/matlab/bin/tm_matlab -_REPLACE_FILES.bash+= plugins/maxima/bin/maxima_detect -_REPLACE_FILES.bash+= plugins/maxima/bin/tm_maxima -_REPLACE_FILES.bash+= plugins/mupad/bin/tm_mupad_help -_REPLACE_FILES.bash+= plugins/octave/bin/tm_octave -_REPLACE_FILES.bash+= plugins/reduce/bin/tm_reduce -_REPLACE_FILES.bash+= plugins/xypic/bin/tm_xypic +REPLACE.bash.old= /bin/bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash+= plugins/dratex/bin/tm_dratex +REPLACE_FILES.bash+= plugins/eukleides/bin/tm_eukleides +REPLACE_FILES.bash+= plugins/gnuplot/bin/tm_gnuplot +REPLACE_FILES.bash+= plugins/lisp/bin/tm_lisp +REPLACE_FILES.bash+= plugins/lush/bin/tm_lush +REPLACE_FILES.bash+= plugins/matlab/bin/tm_matlab +REPLACE_FILES.bash+= plugins/maxima/bin/maxima_detect +REPLACE_FILES.bash+= plugins/maxima/bin/tm_maxima +REPLACE_FILES.bash+= plugins/mupad/bin/tm_mupad_help +REPLACE_FILES.bash+= plugins/octave/bin/tm_octave +REPLACE_FILES.bash+= plugins/reduce/bin/tm_reduce +REPLACE_FILES.bash+= plugins/xypic/bin/tm_xypic pre-install: ${FIND} ${WRKSRC}/plugins/ . -name '*.orig' | ${XARGS} ${RM} diff --git a/editors/ce/Makefile b/editors/ce/Makefile index 811b8c9d1db..7749dd14102 100644 --- a/editors/ce/Makefile +++ b/editors/ce/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2006/03/09 14:50:31 ghen Exp $ +# $NetBSD: Makefile,v 1.16 2006/03/11 10:07:49 ghen Exp $ # .include "Makefile.common" @@ -8,9 +8,9 @@ COMMENT+= , tty version PKG_INSTALLATION_TYPES= overwrite pkgviews REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= .*/bin/bash -_REPLACE.bash.new= ${SH:Q} -_REPLACE_FILES.bash= teach-ce.in +REPLACE.bash.old= .*/bin/bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash= teach-ce.in BUILD_TARGET= ce INSTALL_TARGET= install man-install |