diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-03-14 22:17:00 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-03-14 22:17:00 +0000 |
commit | b38c2eef3f57421cc2f3d4a3e4c88e01b133f6a0 (patch) | |
tree | 30ce2589d6b68035c29aa24082b261b9e26de8fb /Build/source | |
parent | 122f6092f44728c5308a3efb16830e6f1f255bc1 (diff) |
wrapper for thumbpdf.pl, mv ppower4 ppower4.texlua, add support for
-sys progs in Makefile.in, changed svn properties.
git-svn-id: svn://tug.org/texlive/trunk@6969 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/tetex/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/tetex/Makefile.in | 20 |
2 files changed, 23 insertions, 2 deletions
diff --git a/Build/source/texk/tetex/ChangeLog b/Build/source/texk/tetex/ChangeLog index ffcb8036d24..69695450952 100644 --- a/Build/source/texk/tetex/ChangeLog +++ b/Build/source/texk/tetex/ChangeLog @@ -1,3 +1,8 @@ +2008-03-14 Reinhard Kotucha <reinhard.kotucha@web.de> + + * Makefile.in (LINKED_SYS_SCRIPTS): new list for -sys progs. + Add getnonfreefonts.pl. + 2008-03-14 Karl Berry <karl@tug.org> * Makefile.in (LINKEDSCRIPTS): add ppower4, no longer in tetex. diff --git a/Build/source/texk/tetex/Makefile.in b/Build/source/texk/tetex/Makefile.in index 8d01d5623b3..9e5bbf9d8ff 100644 --- a/Build/source/texk/tetex/Makefile.in +++ b/Build/source/texk/tetex/Makefile.in @@ -24,13 +24,17 @@ LINKEDSCRIPTS = \ texmf/scripts/ps2eps/ps2eps.pl \ texmf/scripts/tetex/e2pall.pl \ texmf/scripts/tetex/texdoctk.pl \ + texmf/scripts/texlive/getnonfreefonts.pl \ texmf-dist/scripts/glossaries/makeglossaries \ - texmf-dist/scripts/ppower4/ppower4 \ texmf-dist/scripts/perltex/perltex.pl \ texmf-dist/scripts/texcount/TeXcount.pl \ texmf-dist/scripts/thumbpdf/thumbpdf.pl \ + texmf-dist/scripts/ppower4/ppower4.texlua \ texmf-dist/scripts/vpe/vpe.pl +LINKED_SYS_SCRIPTS = \ + texmf/scripts/texlive/getnonfreefonts.pl + CONTEXTSCRIPTS = \ ctxtools exatools luatools makempy mpstools mptopdf mtxtools \ pdftools pstopdf rlxtools runtools texexec texfont texmfstart \ @@ -98,7 +102,7 @@ install-data:: $(INSTALL_SCRIPT) $(srcdir)/tcfmgr $(texmf)/texconfig/tcfmgr $(INSTALL_DATA) $(srcdir)/tcfmgr.map $(texmf)/texconfig/tcfmgr.map -install-exec: install-linkedscripts +install-exec: install-linkedscripts install-linked-sys-scripts -$(SHELL) $(srcdir)/../mkinstalldirs $(scriptdir) for s in $(SCRIPTS); do \ $(INSTALL_SCRIPT) $(srcdir)/$$s $(scriptdir)/$$s; \ @@ -137,6 +141,18 @@ install-linkedscripts: ln -s ../../$$s $$target; \ done +install-linked-sys-scripts: + -$(SHELL) $(srcdir)/../mkinstalldirs $(scriptdir) + # link to the basename, removing any extension, of the source, + # and append -sys to the file name. + # we downcase for the sake of TeXcount.pl -> texcount-sys. + for s in $(LINKED_SYS_SCRIPTS); do \ + target=$(scriptdir)/`basename $$s | sed 's,\.[^/]*$$,,' | tr A-Z a-z`; \ + target="$target-sys" \ + rm -f $$target; \ + ln -s ../../$$s $$target; \ + done + kpse_include ../make/clean.mk config.status: $(srcdir)/configure |