diff options
author | jlam <jlam> | 1999-05-25 23:51:12 +0000 |
---|---|---|
committer | jlam <jlam> | 1999-05-25 23:51:12 +0000 |
commit | 1008f819b5e351cc1ac862043add94bf2bb2e082 (patch) | |
tree | 72d766f3c44ce320b8c3e8f583e1b8f01cd03d2f /math | |
parent | d9fea07b146c9bade2477cdacd13736bc12ea7fe (diff) | |
download | pkgsrc-1008f819b5e351cc1ac862043add94bf2bb2e082.tar.gz |
Oops...still learning CVS. Forgot to add these files before the commit.
Diffstat (limited to 'math')
-rw-r--r-- | math/R/patches/patch-ae | 28 | ||||
-rw-r--r-- | math/R/patches/patch-af | 22 | ||||
-rw-r--r-- | math/R/patches/patch-ag | 17 | ||||
-rw-r--r-- | math/R/patches/patch-ah | 13 |
4 files changed, 80 insertions, 0 deletions
diff --git a/math/R/patches/patch-ae b/math/R/patches/patch-ae new file mode 100644 index 00000000000..204d8e450a4 --- /dev/null +++ b/math/R/patches/patch-ae @@ -0,0 +1,28 @@ +$NetBSD: patch-ae,v 1.1 1999/05/25 23:51:12 jlam Exp $ + +--- Makefile.in.orig Fri Apr 16 09:25:20 1999 ++++ Makefile.in Tue May 25 02:48:46 1999 +@@ -49,15 +49,19 @@ + $(INSTALL_DATA) $${f} $(rhome); \ + done) + @echo "Installing executables ..." +- @$(INSTALL_PROGRAM) bin/R.binary $(rhome)/bin ++ @$(INSTALL_PROGRAM) bin/R.binary $(bindir) ++ @if [ -f bin/R.gnome ]; then \ ++ $(INSTALL_PROGRAM) bin/R.gnome $(bindir); \ ++ fi + @cat bin/R | sed "s@RHOME=.*@RHOME=$(rhome)@" > $(rhome)/bin/R + @cat bin/R | sed "s@RHOME=.*@RHOME=$(rhome)@" > $(bindir)/R + @chmod 755 $(bindir)/R $(rhome)/bin/R +- @for f in `ls bin/* | grep -v '^bin/\(R\|R.binary\)\**$$'`; do \ +- $(INSTALL) $${f} $(rhome)/bin; \ ++ @for f in \ ++ `ls bin/* | grep -v '^bin/\(R\|R.binary\|R.gnome\)\**$$'`; do \ ++ $(INSTALL_SCRIPT) $${f} $(rhome)/bin; \ + done + @for f in Rd2txt Rdconv Rdindex Sd2Rd; do \ +- $(INSTALL) bin/$${f} $(bindir); \ ++ $(INSTALL_OWN_SCRIPT) bin/$${f} $(bindir); \ + done + @echo "Installing headers ..." + @for f in include/*.h; do \ diff --git a/math/R/patches/patch-af b/math/R/patches/patch-af new file mode 100644 index 00000000000..3a1fb0438c5 --- /dev/null +++ b/math/R/patches/patch-af @@ -0,0 +1,22 @@ +$NetBSD: patch-af,v 1.1 1999/05/25 23:51:12 jlam Exp $ + +--- src/scripts/R.sh.in.orig Thu May 6 04:32:27 1999 ++++ src/scripts/R.sh.in Mon May 24 19:26:06 1999 +@@ -47,7 +47,7 @@ + echo "*** (maybe use \`run ${args}' from *inside* ${deb}" + echo "" + fi +- exec ${deb} ${RHOME}/bin/${R_BINARY} ;; ++ exec ${deb} @prefix@/bin/${R_BINARY} ;; + --no-environ) + USE_R_ENVIRON=false ;; + --vanilla) +@@ -106,7 +106,7 @@ + if ${USE_R_ENVIRON}; then + [ -r ${HOME}/.Renviron ] && . ${HOME}/.Renviron + fi +-exec ${RHOME}/bin/${R_BINARY} @R_BATCHSAVE@ ${ARGS} ++exec @prefix@/bin/${R_BINARY} @R_BATCHSAVE@ ${ARGS} + + ### Local Variables: *** + ### mode: sh *** diff --git a/math/R/patches/patch-ag b/math/R/patches/patch-ag new file mode 100644 index 00000000000..ad2e98a3e17 --- /dev/null +++ b/math/R/patches/patch-ag @@ -0,0 +1,17 @@ +$NetBSD: patch-ag,v 1.1 1999/05/25 23:51:12 jlam Exp $ + +--- src/scripts/Makefile.in.orig Fri Mar 5 11:19:10 1999 ++++ src/scripts/Makefile.in Tue May 25 02:39:25 1999 +@@ -26,10 +26,10 @@ + (cd $(top_builddir); sed "s@RHOME=.*@RHOME=`pwd`@" > bin/R) + @chmod +x $(top_builddir)/bin/R + @for f in $(SRC_SCRIPTS); do \ +- $(INSTALL) $(srcdir)/$$f $(top_builddir)/bin; \ ++ $(INSTALL_SCRIPT) $(srcdir)/$$f $(top_builddir)/bin; \ + done + @for f in $(OBJ_SCRIPTS); do \ +- $(INSTALL) $$f $(top_builddir)/bin; \ ++ $(INSTALL_SCRIPT) $$f $(top_builddir)/bin; \ + done + + mostlyclean: clean diff --git a/math/R/patches/patch-ah b/math/R/patches/patch-ah new file mode 100644 index 00000000000..207f5e4b2d5 --- /dev/null +++ b/math/R/patches/patch-ah @@ -0,0 +1,13 @@ +$NetBSD: patch-ah,v 1.1 1999/05/25 23:51:12 jlam Exp $ + +--- doc/Makefile.in.orig Tue Mar 30 04:29:11 1999 ++++ doc/Makefile.in Tue May 25 02:52:08 1999 +@@ -33,7 +33,7 @@ + fi + + install: installdirs install-html install-man +- @$(INSTALL) keyword-test $(rhome)/doc ++ @$(INSTALL_SCRIPT) keyword-test $(rhome)/doc + @$(INSTALL_DATA) $(srcdir)/KEYWORDS $(rhome)/doc + @(cd manual && $(MAKE) $@) + installdirs: |