diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2000-11-03 12:26:53 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2000-11-03 12:26:53 +0000 |
commit | 61e8aea7691cb1dcfb502d98852f4fc16476ee38 (patch) | |
tree | 4587cd1f447c5fd2b3e3074834d86eaad89f12b3 /chinese/bg5ps/files | |
parent | ea54652533c7b2d5f3c338e7f28a621f7b7d4afa (diff) | |
download | ports-61e8aea7691cb1dcfb502d98852f4fc16476ee38.tar.gz ports-61e8aea7691cb1dcfb502d98852f4fc16476ee38.zip |
Notes
Diffstat (limited to 'chinese/bg5ps/files')
-rw-r--r-- | chinese/bg5ps/files/patch-aa | 82 | ||||
-rw-r--r-- | chinese/bg5ps/files/patch-ab | 11 | ||||
-rw-r--r-- | chinese/bg5ps/files/patch-ac | 23 | ||||
-rw-r--r-- | chinese/bg5ps/files/patch-ad | 11 | ||||
-rw-r--r-- | chinese/bg5ps/files/patch-ae | 9 |
5 files changed, 84 insertions, 52 deletions
diff --git a/chinese/bg5ps/files/patch-aa b/chinese/bg5ps/files/patch-aa index 292c81914419..1f63ef755949 100644 --- a/chinese/bg5ps/files/patch-aa +++ b/chinese/bg5ps/files/patch-aa @@ -1,56 +1,34 @@ ---- bg5ps.orig Fri Oct 2 08:35:41 1998 -+++ bg5ps Fri Dec 17 17:01:21 1999 -@@ -1,4 +1,4 @@ --#!/usr/bin/python -+#!/usr/local/bin/python - ################################################################################ - # bg5ps.py which use the ttf2ps program to convert the Big5 Coding chinese # - # text into printable postscript file. Since it uses true type font, the # -@@ -418,10 +418,10 @@ - exec l - cf.close() - else: -- sys.stderr.write("\n~/.bg5ps.conf not found.\n Trying /etc/bg5ps.conf.") -- if os.path.isfile("/etc/bg5ps.conf"): -- sys.stderr.write("\n /etc/bg5ps.conf found. Use configuration file /etc/bg5ps.conf") -- cf=open("/etc/bg5ps.conf","r") -+ sys.stderr.write("\n~/.bg5ps.conf not found.\n Trying /usr/local/etc/chinese/bg5ps.conf.") -+ if os.path.isfile("/usr/local/etc/chinese/bg5ps.conf"): -+ sys.stderr.write("\n /usr/local/etc/chinese/bg5ps.conf found. Use configuration file /usr/local/etc/chinese/bg5ps.conf") -+ cf=open("/usr/local/etc/chinese/bg5ps.conf","r") - for l in cf.readlines(): - exec l - cf.close() ---- bg5ps.conf.orig Fri Dec 17 16:58:30 1999 -+++ bg5ps.conf Fri Dec 17 17:07:48 1999 -@@ -1,9 +1,9 @@ - #chineseFontPath: 指定中文字型的路徑(預設值: 與 bg5ps 同) --chineseFontPath="" -+chineseFontPath="/usr/X11R6/lib/X11/fonts/TrueType" - #modify the above line +--- Makefile.orig Thu Nov 2 22:44:32 2000 ++++ Makefile Thu Nov 2 22:47:11 2000 +@@ -21,11 +21,13 @@ + INSTALL = install + CFLAGS = + LIBS = -lttf -lm +-INCLUDEDIR = ++LIBSDIR = -L/usr/local/lib ++INCLUDEDIR = -I/usr/local/include - #fontName: 指定中文字型的檔案名稱(預設值: ntu_kai) --fontName="ntu_kai" -+fontName="moe_kai" +-prefix = /usr ++ ++prefix = /usr/local + BINDIR = $(prefix)/bin +-ETCDIR = /etc/chinese/ ++ETCDIR = /usr/local/etc/etc - #oddPages: 0 不輸出奇數頁,1 輸出奇數頁(預設值: 1) - #true=1, false=0 ---- ttf2psm.c.orig Wed Aug 26 21:50:26 1998 -+++ ttf2psm.c Fri Dec 17 17:03:31 1999 -@@ -10,7 +10,6 @@ - #include <math.h> - #include <stdlib.h> - #include <string.h> --#include <malloc.h> - #include <memory.h> - #include <time.h> + all: ttf2psm -@@ -96,7 +95,7 @@ - void Beg(); - void End(); +@@ -33,12 +35,12 @@ + $(CC) -c $(CFLAGS) $(INCLUDEDIR) $< -o $@ + + ttf2psm: $(OBJS) +- $(CC) $(CFLAGS) $(INCLUDEDIR) $(LIBS) -o ttf2psm $(OBJS) ++ $(CC) $(CFLAGS) $(INCLUDEDIR) $(LIBSDIR) $(LIBS) -o ttf2psm $(OBJS) + + install: all bg5ps bg5ps.conf + mkdir -p $(ETCDIR) + mkdir -p $(BINDIR) +- $(INSTALL) -m644 bg5ps.conf $(ETCDIR)/bg5ps.conf ++ $(INSTALL) -m644 bg5ps.conf $(ETCDIR)/bg5ps.conf.sample + $(INSTALL) -m755 bg5ps $(BINDIR) + $(INSTALL) -m755 ttf2psm $(BINDIR) --void main(int argc, char *argv[]){ -+int main(int argc, char *argv[]){ - FILE *fn; - short cidx, i; - time_t t1, t2; diff --git a/chinese/bg5ps/files/patch-ab b/chinese/bg5ps/files/patch-ab new file mode 100644 index 000000000000..b7dde0daa4be --- /dev/null +++ b/chinese/bg5ps/files/patch-ab @@ -0,0 +1,11 @@ +--- bg5ps.conf.orig Thu Nov 2 23:47:35 2000 ++++ bg5ps.conf Thu Nov 2 23:50:27 2000 +@@ -4,7 +4,7 @@ + Encoding="big5" + + #chineseFontPath: 指定中文字型的路徑(預設值: 與 bg5ps 同) +-chineseFontPath="/usr/share/fonts/ttf/" ++chineseFontPath="/usr/X11R6/lib/X11/fonts/TrueType" + + #modify the above line + diff --git a/chinese/bg5ps/files/patch-ac b/chinese/bg5ps/files/patch-ac new file mode 100644 index 000000000000..c4ba1d18afbb --- /dev/null +++ b/chinese/bg5ps/files/patch-ac @@ -0,0 +1,23 @@ +--- bg5ps.orig Thu Nov 2 23:50:38 2000 ++++ bg5ps Thu Nov 2 23:55:25 2000 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/local/bin/python + ################################################################################ + # bg5ps.py which use the ttf2ps program to convert the Big5 Coding chinese # + # text into printable postscript file. Since it uses true type font, the # +@@ -443,10 +443,10 @@ + exec l + cf.close() + else: +- sys.stderr.write("\n~/.bg5ps.conf not found.\n Trying /etc/chinese/bg5ps.conf.") +- if os.path.isfile("/etc/chinese/bg5ps.conf"): +- sys.stderr.write("\n /etc/chinese/bg5ps.conf found. Use configuration file /etc/chinese/bg5ps.conf") +- cf=open("/etc/chinese/bg5ps.conf","r") ++ sys.stderr.write("\n~/.bg5ps.conf not found.\n Trying /usr/local/etc/bg5ps.conf.") ++ if os.path.isfile("/usr/local/etc/bg5ps.conf"): ++ sys.stderr.write("\n /usr/local/etc/bg5ps.conf found. Use configuration file /usr/local/etc/bg5ps.conf") ++ cf=open("/usr/local/etc/bg5ps.conf","r") + for l in cf.readlines(): + exec l + cf.close() diff --git a/chinese/bg5ps/files/patch-ad b/chinese/bg5ps/files/patch-ad new file mode 100644 index 000000000000..b3f7514eae1f --- /dev/null +++ b/chinese/bg5ps/files/patch-ad @@ -0,0 +1,11 @@ +--- ttf2psm.c.orig Thu Nov 2 22:47:32 2000 ++++ ttf2psm.c Thu Nov 2 22:47:35 2000 +@@ -19,7 +19,7 @@ + */ + + #include<stdio.h> +-#include<freetype/freetype.h> ++#include<freetype.h> + #include<string.h> + #include<ctype.h> + diff --git a/chinese/bg5ps/files/patch-ae b/chinese/bg5ps/files/patch-ae new file mode 100644 index 000000000000..2405e24edceb --- /dev/null +++ b/chinese/bg5ps/files/patch-ae @@ -0,0 +1,9 @@ +--- gb2312-bg5ps.conf.orig Fri Nov 3 01:31:43 2000 ++++ gb2312-bg5ps.conf Fri Nov 3 01:31:49 2000 +@@ -1,5 +1,5 @@ + #chineseFontPath: 指定中文字型的路徑(預設值: 與 bg5ps 同) +-chineseFontPath="/usr/share/fonts/ttf/" ++chineseFontPath="/usr/X11R6/lib/X11/fonts/TrueType" + + #modify the above line + |