diff options
author | will <will@FreeBSD.org> | 2000-08-11 04:11:41 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-08-11 04:11:41 +0000 |
commit | 09ec0cb8067da3b836d2e6b925db5ca87d8adfcd (patch) | |
tree | f5487de3e2d1d05be5ebe3f3ac0c26c06ceb2df8 /textproc/sgmltools-lite/files | |
parent | 7d5bcb7dfd3390c7cd16c0d37e9a8c64af82fcc7 (diff) | |
download | FreeBSD-ports-09ec0cb8067da3b836d2e6b925db5ca87d8adfcd.zip FreeBSD-ports-09ec0cb8067da3b836d2e6b925db5ca87d8adfcd.tar.gz |
Move from sgmltools to sgmltools-lite. This is a fulfilled repository
copy - history is still preserved even though files are being "added".
PR: 19352
Submitted by: Benno Rice <benno@netizen.com.au>
Diffstat (limited to 'textproc/sgmltools-lite/files')
-rw-r--r-- | textproc/sgmltools-lite/files/patch-aa | 26 | ||||
-rw-r--r-- | textproc/sgmltools-lite/files/patch-ab | 11 | ||||
-rw-r--r-- | textproc/sgmltools-lite/files/patch-ac | 11 |
3 files changed, 48 insertions, 0 deletions
diff --git a/textproc/sgmltools-lite/files/patch-aa b/textproc/sgmltools-lite/files/patch-aa new file mode 100644 index 0000000..e111a84 --- /dev/null +++ b/textproc/sgmltools-lite/files/patch-aa @@ -0,0 +1,26 @@ +--- Makefile.in.old Sat Jun 17 20:10:39 2000 ++++ Makefile.in Sat Jun 17 20:10:55 2000 +@@ -29,7 +29,7 @@ + ETCDIR=@etcsgml@ + PERL=@PERL@ + INSTALL=@INSTALL@ +-INSTALL_PROGRAM=@INSTALL_PROGRAM@ ++INSTALL_SCRIPT=@INSTALL_SCRIPT@ + INSTALL_DATA=@INSTALL_DATA@ + MKDIRHIER=mkdir -p + +@@ -38,10 +38,10 @@ + .PHONY: install + install: + -$(MKDIRHIER) $(BINDIR) +- $(INSTALL_PROGRAM) bin/sgmltools $(BINDIR)/sgmltools +- $(INSTALL_PROGRAM) bin/buildcat $(BINDIR)/buildcat +- $(INSTALL_PROGRAM) bin/gensgmlenv $(BINDIR)/gensgmlenv +- $(INSTALL_PROGRAM) bin/sgmlwhich $(BINDIR)/sgmlwhich ++ $(INSTALL_SCRIPT) bin/sgmltools $(BINDIR)/sgmltools ++ $(INSTALL_SCRIPT) bin/buildcat $(BINDIR)/buildcat ++ $(INSTALL_SCRIPT) bin/gensgmlenv $(BINDIR)/gensgmlenv ++ $(INSTALL_SCRIPT) bin/sgmlwhich $(BINDIR)/sgmlwhich + -umask 022;$(MKDIRHIER) $(SHAREDIR)/stylesheets/sgmltools + set -e; for i in dsssl/*.dsl dsssl/*.cat; do \ + $(INSTALL_DATA) $$i $(SHAREDIR)/stylesheets/sgmltools; \ diff --git a/textproc/sgmltools-lite/files/patch-ab b/textproc/sgmltools-lite/files/patch-ab new file mode 100644 index 0000000..36b0c49 --- /dev/null +++ b/textproc/sgmltools-lite/files/patch-ab @@ -0,0 +1,11 @@ +--- python/backends/Dvi.py Fri Mar 24 20:25:06 2000 ++++ python/backends/Dvi.py.new Sat Jun 17 20:19:30 2000 +@@ -50,7 +50,7 @@ + # + (dvibase, junk) = os.path.splitext(outfile) + destfile = dvibase + '.dvi' +- cmdline = 'jadetex ' + outfile ++ cmdline = 'tex "&jadetex" ' + outfile + for run in range(3): + try: + os.unlink(destfile) diff --git a/textproc/sgmltools-lite/files/patch-ac b/textproc/sgmltools-lite/files/patch-ac new file mode 100644 index 0000000..a6eeb33 --- /dev/null +++ b/textproc/sgmltools-lite/files/patch-ac @@ -0,0 +1,11 @@ +--- python/backends/Pdf.py Fri Mar 24 20:36:07 2000 ++++ python/backends/Pdf.py.new Sat Jun 17 20:20:25 2000 +@@ -50,7 +50,7 @@ + # + (pdfbase, junk) = os.path.splitext(outfile) + destfile = pdfbase + '.pdf' +- cmdline = 'pdfjadetex ' + outfile ++ cmdline = 'pdftex "&pdfjadetex" ' + outfile + for run in range(3): + try: + os.unlink(destfile) |