summaryrefslogtreecommitdiff
path: root/Build/source
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2013-04-15 07:49:40 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2013-04-15 07:49:40 +0000
commit19f6913e489a9d6ae6e00484c2db4b0a3738ab58 (patch)
treebe1872e79ef1418a75a49f4a37cc76676b5b8c91 /Build/source
parenta6667d8b13619f551e2f039dc14e87b89ed3f318 (diff)
linked scripts: Install ConTeXt wrappers for MinGW32
git-svn-id: svn://tug.org/texlive/trunk@29932 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r--Build/source/texk/texlive/linked_scripts/ChangeLog4
-rw-r--r--Build/source/texk/texlive/linked_scripts/Makefile.am13
-rw-r--r--Build/source/texk/texlive/linked_scripts/Makefile.in13
-rwxr-xr-xBuild/source/texk/texlive/w32_wrapper/context/context.exebin0 -> 6144 bytes
-rwxr-xr-xBuild/source/texk/texlive/w32_wrapper/context/mtxrun.dllbin9216 -> 38400 bytes
-rwxr-xr-xBuild/source/texk/texlive/w32_wrapper/context/mtxrun.exebin6144 -> 34816 bytes
6 files changed, 24 insertions, 6 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/ChangeLog b/Build/source/texk/texlive/linked_scripts/ChangeLog
index 11b3395c237..8ab3cbf1398 100644
--- a/Build/source/texk/texlive/linked_scripts/ChangeLog
+++ b/Build/source/texk/texlive/linked_scripts/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-15 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * Makefile.am [WIN32]: Install runscript.* and ConTeXt wrappers.
+
2013-02-21 Peter Breitenlohner <peb@mppmu.mpg.de>
* Makefile.am [WIN32]: Install arara.exe wrapper.
diff --git a/Build/source/texk/texlive/linked_scripts/Makefile.am b/Build/source/texk/texlive/linked_scripts/Makefile.am
index b9715d12db5..bc322b3c412 100644
--- a/Build/source/texk/texlive/linked_scripts/Makefile.am
+++ b/Build/source/texk/texlive/linked_scripts/Makefile.am
@@ -192,7 +192,8 @@ bin_links = \
EXTRA_DIST += ../../../build-aux/relpath
relpath = $(SHELL) $(top_srcdir)/../../build-aux/relpath
runscript = $(top_srcdir)/w32_wrapper/runscript.exe
-ctxscript = $(top_srcdir)/w32_wrapper/context/mtxrun.exe
+ctxscript = $(top_srcdir)/w32_wrapper/context/context.exe
+mtxscript = $(top_srcdir)/w32_wrapper/context/mtxrun.exe
install-data-hook: installdirs-local
if WIN32
@for s in $(texmf_other_scripts); do \
@@ -200,11 +201,17 @@ if WIN32
echo "$(INSTALL_SCRIPT) '$(runscript)' '$(DESTDIR)$(bindir)/$$t.exe'"; \
$(INSTALL_SCRIPT) $(runscript) $(DESTDIR)$(bindir)/$$t.exe; \
done
+ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/runscript.dll $(DESTDIR)$(bindir)
+ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/runscript.exe $(DESTDIR)$(bindir)
+ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/runscript.tlu $(DESTDIR)$(bindir)
@for s in $(texmf_context_scripts); do \
t=`basename $$s | sed 's,\.[^/]*$$,,' | tr '[A-Z]' '[a-z]'`; \
- echo "$(INSTALL_SCRIPT) '$(ctxscript)' '$(DESTDIR)$(bindir)/$$t.exe'"; \
- $(INSTALL_SCRIPT) $(ctxscript) $(DESTDIR)$(bindir)/$$t.exe; \
+ if test "x$$t" = xmtxrun; then f=$(mtxscript); else f=$(ctxscript); fi; \
+ echo "$(INSTALL_SCRIPT) '$$f' '$(DESTDIR)$(bindir)/$$t.exe'"; \
+ $(INSTALL_SCRIPT) $$f $(DESTDIR)$(bindir)/$$t.exe; \
done
+ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/context/mtxrun.dll $(DESTDIR)$(bindir)
+ $(INSTALL_SCRIPT) $(srcdir)/context/stubs/unix/mtxrun $(DESTDIR)$(bindir)/mtxrun.lua
@for s in $(bin_links); do \
link=`echo $$s | sed 's,.*:,,'`; \
echo "$(INSTALL_SCRIPT) '$(runscript)' '$(DESTDIR)$(bindir)/$$link.exe'"; \
diff --git a/Build/source/texk/texlive/linked_scripts/Makefile.in b/Build/source/texk/texlive/linked_scripts/Makefile.in
index 58bc635805e..b91af58b461 100644
--- a/Build/source/texk/texlive/linked_scripts/Makefile.in
+++ b/Build/source/texk/texlive/linked_scripts/Makefile.in
@@ -348,7 +348,8 @@ bin_links = \
relpath = $(SHELL) $(top_srcdir)/../../build-aux/relpath
runscript = $(top_srcdir)/w32_wrapper/runscript.exe
-ctxscript = $(top_srcdir)/w32_wrapper/context/mtxrun.exe
+ctxscript = $(top_srcdir)/w32_wrapper/context/context.exe
+mtxscript = $(top_srcdir)/w32_wrapper/context/mtxrun.exe
@WIN32_TRUE@WINEXT = $(EXEEXT)
shell_scripts = $(texmf_shell_scripts) $(texmf_context_scripts)
all: all-am
@@ -604,11 +605,17 @@ install-data-hook: installdirs-local
@WIN32_TRUE@ echo "$(INSTALL_SCRIPT) '$(runscript)' '$(DESTDIR)$(bindir)/$$t.exe'"; \
@WIN32_TRUE@ $(INSTALL_SCRIPT) $(runscript) $(DESTDIR)$(bindir)/$$t.exe; \
@WIN32_TRUE@ done
+@WIN32_TRUE@ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/runscript.dll $(DESTDIR)$(bindir)
+@WIN32_TRUE@ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/runscript.exe $(DESTDIR)$(bindir)
+@WIN32_TRUE@ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/runscript.tlu $(DESTDIR)$(bindir)
@WIN32_TRUE@ @for s in $(texmf_context_scripts); do \
@WIN32_TRUE@ t=`basename $$s | sed 's,\.[^/]*$$,,' | tr '[A-Z]' '[a-z]'`; \
-@WIN32_TRUE@ echo "$(INSTALL_SCRIPT) '$(ctxscript)' '$(DESTDIR)$(bindir)/$$t.exe'"; \
-@WIN32_TRUE@ $(INSTALL_SCRIPT) $(ctxscript) $(DESTDIR)$(bindir)/$$t.exe; \
+@WIN32_TRUE@ if test "x$$t" = xmtxrun; then f=$(mtxscript); else f=$(ctxscript); fi; \
+@WIN32_TRUE@ echo "$(INSTALL_SCRIPT) '$$f' '$(DESTDIR)$(bindir)/$$t.exe'"; \
+@WIN32_TRUE@ $(INSTALL_SCRIPT) $$f $(DESTDIR)$(bindir)/$$t.exe; \
@WIN32_TRUE@ done
+@WIN32_TRUE@ $(INSTALL_SCRIPT) $(top_srcdir)/w32_wrapper/context/mtxrun.dll $(DESTDIR)$(bindir)
+@WIN32_TRUE@ $(INSTALL_SCRIPT) $(srcdir)/context/stubs/unix/mtxrun $(DESTDIR)$(bindir)/mtxrun.lua
@WIN32_TRUE@ @for s in $(bin_links); do \
@WIN32_TRUE@ link=`echo $$s | sed 's,.*:,,'`; \
@WIN32_TRUE@ echo "$(INSTALL_SCRIPT) '$(runscript)' '$(DESTDIR)$(bindir)/$$link.exe'"; \
diff --git a/Build/source/texk/texlive/w32_wrapper/context/context.exe b/Build/source/texk/texlive/w32_wrapper/context/context.exe
new file mode 100755
index 00000000000..2d45f27494d
--- /dev/null
+++ b/Build/source/texk/texlive/w32_wrapper/context/context.exe
Binary files differ
diff --git a/Build/source/texk/texlive/w32_wrapper/context/mtxrun.dll b/Build/source/texk/texlive/w32_wrapper/context/mtxrun.dll
index 4116c5a24a6..6ba2597d56f 100755
--- a/Build/source/texk/texlive/w32_wrapper/context/mtxrun.dll
+++ b/Build/source/texk/texlive/w32_wrapper/context/mtxrun.dll
Binary files differ
diff --git a/Build/source/texk/texlive/w32_wrapper/context/mtxrun.exe b/Build/source/texk/texlive/w32_wrapper/context/mtxrun.exe
index 745eaf22464..acd99ddbf3b 100755
--- a/Build/source/texk/texlive/w32_wrapper/context/mtxrun.exe
+++ b/Build/source/texk/texlive/w32_wrapper/context/mtxrun.exe
Binary files differ