summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorminskim <minskim>2010-01-16 04:43:19 +0000
committerminskim <minskim>2010-01-16 04:43:19 +0000
commit5e32a1928343fd41d016080368b2f02b665a5c5b (patch)
tree528a6fd6f868fab3a6f14c0a79cd6ff075dfb3bc /print
parent654bff79902f6a84cdae7c54526adc327c74eb73 (diff)
downloadpkgsrc-5e32a1928343fd41d016080368b2f02b665a5c5b.tar.gz
Import tex-texlive-scripts-2009.16483 from pkgsrc-wip.
This packages contains rungs and texlua scripts for TeX Live.
Diffstat (limited to 'print')
-rw-r--r--print/tex-texlive-scripts/DESCR1
-rw-r--r--print/tex-texlive-scripts/Makefile22
-rw-r--r--print/tex-texlive-scripts/PLIST7
-rw-r--r--print/tex-texlive-scripts/distinfo6
-rw-r--r--print/tex-texlive-scripts/patches/patch-aa23
5 files changed, 59 insertions, 0 deletions
diff --git a/print/tex-texlive-scripts/DESCR b/print/tex-texlive-scripts/DESCR
new file mode 100644
index 00000000000..e4e5f98c87c
--- /dev/null
+++ b/print/tex-texlive-scripts/DESCR
@@ -0,0 +1 @@
+This packages contains rungs and texlua scripts for TeX Live.
diff --git a/print/tex-texlive-scripts/Makefile b/print/tex-texlive-scripts/Makefile
new file mode 100644
index 00000000000..d6430355f09
--- /dev/null
+++ b/print/tex-texlive-scripts/Makefile
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1.1.1 2010/01/16 04:43:19 minskim Exp $
+# TeX Live Revision 16483
+
+DISTNAME= texlive-scripts
+PKGNAME= tex-${DISTNAME}-2009.16483
+
+MAINTAINER= minskim@NetBSD.org
+COMMENT= TeX Live infrastructure programs
+LICENSE= gnu-gpl-v2 AND public-domain
+
+CONFLICTS+= tex-bin-texlive-[0-9]*
+
+REPLACE_TEXLUA= bin/rungs
+TEX_TEXMF_DIRS+= ${PREFIX}/share/texmf
+
+.include "../../print/texlive/package.mk"
+
+post-extract:
+ ${MKDIR} ${WRKSRC}/bin
+ ${MV} ${WRKSRC}/texmf/scripts/texlive/rungs.tlu ${WRKSRC}/bin/rungs
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/print/tex-texlive-scripts/PLIST b/print/tex-texlive-scripts/PLIST
new file mode 100644
index 00000000000..e603905a87f
--- /dev/null
+++ b/print/tex-texlive-scripts/PLIST
@@ -0,0 +1,7 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2010/01/16 04:43:19 minskim Exp $
+bin/rungs
+share/texmf/scripts/texlive/lua/texlive/getopt.tlu
+share/texmf/scripts/texlive/lua/texlive/tlpdb.tlu
+share/texmf/scripts/texlive/lua/texlive/utils.tlu
+share/texmf/scripts/texlive/test-tlpdb.tlu
+share/texmf/scripts/texlive/texconf.tlu
diff --git a/print/tex-texlive-scripts/distinfo b/print/tex-texlive-scripts/distinfo
new file mode 100644
index 00000000000..14cd3c5a3fb
--- /dev/null
+++ b/print/tex-texlive-scripts/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2010/01/16 04:43:19 minskim Exp $
+
+SHA1 (tex-texlive-scripts-2009.16483/texlive-scripts.tar.xz) = 1e021e6d3cef924a6d94659714ae32d297dc451a
+RMD160 (tex-texlive-scripts-2009.16483/texlive-scripts.tar.xz) = 692455addfc7faf58696552c0184b45299d32b5e
+Size (tex-texlive-scripts-2009.16483/texlive-scripts.tar.xz) = 40328 bytes
+SHA1 (patch-aa) = 6f8f348c11c5d8f98a59aa38f683b36fe0469e30
diff --git a/print/tex-texlive-scripts/patches/patch-aa b/print/tex-texlive-scripts/patches/patch-aa
new file mode 100644
index 00000000000..20d0d735be2
--- /dev/null
+++ b/print/tex-texlive-scripts/patches/patch-aa
@@ -0,0 +1,23 @@
+$NetBSD: patch-aa,v 1.1.1.1 2010/01/16 04:43:19 minskim Exp $
+
+--- texmf/scripts/texlive/lua/texlive/tlpdb.tlu.orig 2008-07-22 01:58:59.000000000 -0700
++++ texmf/scripts/texlive/lua/texlive/tlpdb.tlu
+@@ -36,6 +36,7 @@
+ -- tlpobj.runsize string
+ -- tlpobj.depend = table indexed by numbers
+ -- tlpobj.execute = table indexed by numbers
++-- tlpobj.relocated = string
+ --
+ --*-Lua-*-
+
+@@ -225,6 +226,10 @@ function read_tlpdb(root)
+ tlpobj.execute = {}
+ end
+ table.insert(tlpobj.execute,rest)
++ elseif first == "relocated" then
++ tlpobj.relocated = rest
++ elseif first == "postaction" then
++ -- Ignore postaction
+ else
+ print("first = "..first)
+ io.stderr:write('Error reading tlpdb: unknown directive in line\n>>'..line.."<<\n")