summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2020-05-07 13:06:47 +0000
committerwiz <wiz@pkgsrc.org>2020-05-07 13:06:47 +0000
commit9a3d36e620dab1e76f4423f4b333732b54e55a95 (patch)
tree3cdde686a3d6b5ded42dccc608ebe61251750a45 /print
parent3d0ef12f1f437bdd793d2422a78846b136e949aa (diff)
downloadpkgsrc-9a3d36e620dab1e76f4423f4b333732b54e55a95.tar.gz
tex-musixtex: remove patch that was removed from distinfo
Diffstat (limited to 'print')
-rw-r--r--print/tex-musixtex/patches/patch-bin_musixtex42
1 files changed, 0 insertions, 42 deletions
diff --git a/print/tex-musixtex/patches/patch-bin_musixtex b/print/tex-musixtex/patches/patch-bin_musixtex
deleted file mode 100644
index 3696f99894f..00000000000
--- a/print/tex-musixtex/patches/patch-bin_musixtex
+++ /dev/null
@@ -1,42 +0,0 @@
-$NetBSD: patch-bin_musixtex,v 1.7 2018/05/12 01:14:32 markd Exp $
-
-Fix paths to commands.
-
---- bin/musixtex.orig 2017-12-26 22:07:24.000000000 +0000
-+++ bin/musixtex
-@@ -197,10 +197,10 @@ function defaults()
- prepmx = "prepmx"
- pmx = "pmxab"
- autosp = "autosp"
-- tex = "etex"
-- musixflx = "musixflx"
-- dvi = dvips
-- ps2pdf = "ps2pdf"
-+ tex = "@LOCALBASE@/bin/etex"
-+ musixflx = "@LOCALBASE@/bin/musixflx"
-+ dvi = @LOCALBASE@/bin/dvips
-+ ps2pdf = "@LOCALBASE@/bin/ps2pdf"
- cleanup = true -- clean up intermediate and log files
- index = false
- latex = false
-@@ -423,7 +423,7 @@ function tex_process(tex,basename,extens
- local latex = latex
- if extension == "ltx" then
- if not force_engine and not latex then
-- if dvi then tex = "latex" else tex = "pdflatex" end
-+ if dvi then tex = "@LOCALBASE@/bin/latex" else tex = "@LOCALBASE@/bin/pdflatex" end
- end
- latex = true
- end
-@@ -567,9 +567,9 @@ repeat
- if not override:match"l" then latex = tex:match"latex" end
- if not force_engine then -- select appropriate default engine
- if latex then
-- if dvi==nil then tex = "pdflatex" else tex = "latex" end
-+ if dvi==nil then tex = "@LOCALBASE@/bin/pdflatex" else tex = "@LOCALBASE@/bin/latex" end
- else
-- if dvi==nil then tex = "pdfetex" else tex = "etex" end
-+ if dvi==nil then tex = "@LOCALBASE@/bin/pdfetex" else tex = "@LOCALBASE@/bin/etex" end
- end
- end
- end