aboutsummaryrefslogtreecommitdiff
path: root/print/tex-luatex
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2018-02-07 19:10:49 +0000
committerKurt Jaeger <pi@FreeBSD.org>2018-02-07 19:10:49 +0000
commit0669bafe6ba88091e307ce94f4c46f541e3269ca (patch)
tree7bf256ed27868c7ffe83aa02f2587842988bee10 /print/tex-luatex
parent0462a35b77e608a9295e062be4589cf18a71346f (diff)
downloadports-0669bafe6ba88091e307ce94f4c46f541e3269ca.tar.gz
ports-0669bafe6ba88091e307ce94f4c46f541e3269ca.zip
Notes
Diffstat (limited to 'print/tex-luatex')
-rw-r--r--print/tex-luatex/Makefile2
-rw-r--r--print/tex-luatex/files/patch-pdftoepdf.w19
2 files changed, 20 insertions, 1 deletions
diff --git a/print/tex-luatex/Makefile b/print/tex-luatex/Makefile
index 86668e2c9daa..87b145f5a9b0 100644
--- a/print/tex-luatex/Makefile
+++ b/print/tex-luatex/Makefile
@@ -2,7 +2,7 @@
PORTNAME= luatex
PORTVERSION= 0.80.0
-PORTREVISION= 7
+PORTREVISION= 8
CATEGORIES= print
MASTER_SITES= ftp://tug.org/historic/systems/texlive/2015/
PKGNAMEPREFIX= tex-
diff --git a/print/tex-luatex/files/patch-pdftoepdf.w b/print/tex-luatex/files/patch-pdftoepdf.w
new file mode 100644
index 000000000000..30884f9b4529
--- /dev/null
+++ b/print/tex-luatex/files/patch-pdftoepdf.w
@@ -0,0 +1,19 @@
+--- luatexdir/image/pdftoepdf.w.orig 2018-01-31 15:17:41 UTC
++++ luatexdir/image/pdftoepdf.w
+@@ -70,8 +70,14 @@ static char *get_file_checksum(char *a,
+ if (ck == NULL)
+ luatex_fail("PDF inclusion: out of memory while processing '%s'",
+ a);
+- snprintf(ck, PDF_CHECKSUM_SIZE, "%" PRIu64 "_%" PRIu64, (uint64_t) size,
+- (uint64_t) mtime);
++ // snprintf(ck, PDF_CHECKSUM_SIZE, "%" PRIu64 "_%" PRIu64, (uint64_t) size,
++ // (uint64_t) mtime);
++ snprintf(ck, PDF_CHECKSUM_SIZE, "%"
++ PRIu64
++ "_%"
++ PRIu64,
++ (uint64_t) size,
++ (uint64_t) mtime);
+ } else {
+ switch (fe) {
+ case FE_FAIL: