summaryrefslogtreecommitdiff
path: root/chinese
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2000-04-02 04:50:22 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2000-04-02 04:50:22 +0000
commit4046f07bee76bf1998bf5886150b428ddcd65d22 (patch)
tree982fd149f86dc4027d746d94e6b46a124e1775c4 /chinese
parentUpgrade to 4.4d. (diff)
Respect CC and CFLAGS
Notes
Notes: svn path=/head/; revision=27275
Diffstat (limited to 'chinese')
-rw-r--r--chinese/autoconvert/files/patch-aa6
-rw-r--r--chinese/autoconvert/files/patch-ab6
-rw-r--r--chinese/c2t/files/patch-0113
-rw-r--r--chinese/celvis/files/patch-aa6
-rw-r--r--chinese/gb2ps/files/patch-0111
-rw-r--r--chinese/hztty/files/patch-aa48
-rw-r--r--chinese/lunar/files/patch-012
-rw-r--r--chinese/pine4/files/patch-aa13
-rw-r--r--chinese/pine4/files/patch-bx35
9 files changed, 101 insertions, 39 deletions
diff --git a/chinese/autoconvert/files/patch-aa b/chinese/autoconvert/files/patch-aa
index dffefb51f3d3..04e28ead8118 100644
--- a/chinese/autoconvert/files/patch-aa
+++ b/chinese/autoconvert/files/patch-aa
@@ -1,10 +1,10 @@
---- Makefile.orig Sat Mar 11 14:41:18 2000
-+++ Makefile Sat Mar 11 14:41:24 2000
+--- Makefile.orig Wed Jan 5 13:50:05 2000
++++ Makefile Sun Apr 2 11:37:04 2000
@@ -1,6 +1,6 @@
CC=gcc
-CFLAG=-O2 -g -Iinclude
-+CFLAG+=-O2 -g -Iinclude
++CFLAG+=-Iinclude
all: autob5 autogb hzlib
diff --git a/chinese/autoconvert/files/patch-ab b/chinese/autoconvert/files/patch-ab
index 7b4e77b118ea..166dcee1b79b 100644
--- a/chinese/autoconvert/files/patch-ab
+++ b/chinese/autoconvert/files/patch-ab
@@ -1,8 +1,8 @@
--- hzconvert/Makefile.orig Wed Jan 5 13:12:31 2000
-+++ hzconvert/Makefile Sun Mar 12 18:39:46 2000
-@@ -1,12 +1,12 @@
++++ hzconvert/Makefile Sun Apr 2 11:37:24 2000
+@@ -1,12 +1,11 @@
CC=gcc -I../include
- CFLAGS=-O2
+-CFLAGS=-O2
OBJS=b2g.o b2u.o g2u.o hz2gb.o b2g_tables.o b2u_tables.o g2u_tables.o io.o unicode.o judge.o
+all:libhzconvert
%.o:%c
diff --git a/chinese/c2t/files/patch-01 b/chinese/c2t/files/patch-01
index c8dcd37d894e..ad06a1ab20f4 100644
--- a/chinese/c2t/files/patch-01
+++ b/chinese/c2t/files/patch-01
@@ -1,8 +1,15 @@
---- Makefile.orig Tue Feb 23 22:21:39 1993
-+++ Makefile Tue Feb 4 02:10:15 1997
-@@ -1,4 +1,4 @@
+--- Makefile.orig Wed Feb 24 14:21:39 1993
++++ Makefile Sun Apr 2 11:42:44 2000
+@@ -1,9 +1,9 @@
-CC=cc
+CC=cc -DCHINDICT=\"$(PREFIX)/share/chinese/gb/TONEPY.tit\"
all: c2t
+ c2t: c2t.o
+- $(CC) -O -o c2t c2t.o
++ $(CC) $(CFLAGS) -o c2t c2t.o
+
+ c2t.o: c2t.c
+- $(CC) -O -c c2t.c
++ $(CC) $(CFLAGS) -c c2t.c
diff --git a/chinese/celvis/files/patch-aa b/chinese/celvis/files/patch-aa
index 3467f45384f2..7523bb055ad3 100644
--- a/chinese/celvis/files/patch-aa
+++ b/chinese/celvis/files/patch-aa
@@ -1,11 +1,11 @@
---- Makefile.orig Wed May 15 12:09:50 1991
-+++ Makefile Thu Aug 15 04:47:32 1996
+--- Makefile.orig Thu May 16 03:09:50 1991
++++ Makefile Sun Apr 2 11:44:47 2000
@@ -22,7 +22,7 @@
SRC5= regexp.c regexp.h regsub.c sysdos.c system.c tinytcap.c tio.c tmp.c
SRC6= vars.c vcmd.c vi.c vi.h ctags.c ref.c virec.c wildcard.c shell.c
EXTRA=
-CFLAGS= -O
-+CFLAGS= -O -D_HAVE_PARAM_H
++CFLAGS+= -D_HAVE_PARAM_H
LIBS= -ltermcap
all: $(PROGS)
diff --git a/chinese/gb2ps/files/patch-01 b/chinese/gb2ps/files/patch-01
index adb18cb55c61..cf6fa9f3c4fb 100644
--- a/chinese/gb2ps/files/patch-01
+++ b/chinese/gb2ps/files/patch-01
@@ -1,6 +1,6 @@
---- Makefile.orig Sun Aug 16 22:34:14 1992
-+++ Makefile Wed Feb 5 00:03:39 1997
-@@ -5,9 +5,9 @@
+--- Makefile.orig Mon Aug 17 13:34:14 1992
++++ Makefile Sun Apr 2 11:40:36 2000
+@@ -5,11 +5,11 @@
# COVERPAGE -- the absolute path and name of coverpage PS file
# -- default is current directory
@@ -10,5 +10,8 @@
-COVERPAGE=./cover.ps
+COVERPAGE=${PREFIX}/share/chinese/cover.ps
- CFLAGS = -DCFONT=\"${CFONT}\" -DCOVERPAGE=\"${COVERPAGE}\"
+-CFLAGS = -DCFONT=\"${CFONT}\" -DCOVERPAGE=\"${COVERPAGE}\"
++CFLAGS += -DCFONT=\"${CFONT}\" -DCOVERPAGE=\"${COVERPAGE}\"
+ all: gb2ps
+
diff --git a/chinese/hztty/files/patch-aa b/chinese/hztty/files/patch-aa
index 896d1983bc28..ff0cccceb05c 100644
--- a/chinese/hztty/files/patch-aa
+++ b/chinese/hztty/files/patch-aa
@@ -1,20 +1,28 @@
-*** Makefile.dist Thu Sep 25 00:26:00 1997
---- Makefile Thu Sep 25 00:47:01 1997
-***************
-*** 132,138 ****
-
-
- bsd:
-! miniconf.sh $(CPP)
- ${MAKE} ${MFLAGS} DEFINES='-DBSD' ${PROG}
-
- posix:
---- 134,140 ----
-
-
- bsd:
-! ./miniconf.sh $(CPP)
- ${MAKE} ${MFLAGS} DEFINES='-DBSD' ${PROG}
-
- posix:
-
+--- Makefile.orig Sun Jan 29 16:39:19 1995
++++ Makefile Sun Apr 2 11:16:03 2000
+@@ -19,7 +19,6 @@
+
+ CC=cc
+ CPP=$(CC) -E
+-CDEBUGFLAGS= -O
+ MAKE=make
+ RM=rm -f
+
+@@ -31,7 +30,7 @@
+ ${OBJ_GB_BIG5} ${OBJ_UNICODE_GB} ${OBJ_UNICODE_BIG5}
+
+ DEFINES=
+-CFLAGS=${CDEBUGFLAGS} ${DEFINES} ${MODULES_DEF} -I.
++CFLAGS+=${CDEBUGFLAGS} ${DEFINES} ${MODULES_DEF} -I.
+
+ PROG = hztty
+ LIBS=
+@@ -132,7 +131,7 @@
+
+
+ bsd:
+- miniconf.sh $(CPP)
++ ./miniconf.sh $(CPP)
+ ${MAKE} ${MFLAGS} DEFINES='-DBSD' ${PROG}
+
+ posix:
diff --git a/chinese/lunar/files/patch-01 b/chinese/lunar/files/patch-01
index 34d3fd70306e..0dc60ddb76fd 100644
--- a/chinese/lunar/files/patch-01
+++ b/chinese/lunar/files/patch-01
@@ -4,7 +4,7 @@
# Makefile of LUNAR
-CFLAGS= -O
-+CFLAGS= -O -DBITMAPFILE=\"$(BITMAPFILE)\"
++CFLAGS+= -DBITMAPFILE=\"$(BITMAPFILE)\"
+
+BITMAPFILE= $(PREFIX)/share/chinese/lunar.bitmap
diff --git a/chinese/pine4/files/patch-aa b/chinese/pine4/files/patch-aa
index 483e8f6a6c22..324a3658b40b 100644
--- a/chinese/pine4/files/patch-aa
+++ b/chinese/pine4/files/patch-aa
@@ -1,5 +1,5 @@
---- imap/src/osdep/unix/Makefile.orig Thu Sep 30 13:54:13 1999
-+++ imap/src/osdep/unix/Makefile Thu Oct 14 10:53:41 1999
+--- imap/src/osdep/unix/Makefile.orig Wed Nov 17 10:26:06 1999
++++ imap/src/osdep/unix/Makefile Sun Apr 2 12:22:00 2000
@@ -86,7 +86,7 @@
# Commands possibly overriden by the individual port
@@ -18,3 +18,12 @@
MAKE=make
MV=mv
RM=rm -rf
+@@ -194,7 +194,7 @@
+ SPOOLDIR=/var \
+ ACTIVEFILE=/usr/local/news/lib/active \
+ RSHPATH=/usr/bin/rsh \
+- BASECFLAGS="-g -O -pipe -DNFSKLUDGE" \
++ BASECFLAGS="-pipe -DNFSKLUDGE" \
+ BASELDFLAGS="-lcrypt"
+
+ bsi: # BSD/i386
diff --git a/chinese/pine4/files/patch-bx b/chinese/pine4/files/patch-bx
new file mode 100644
index 000000000000..34d145354710
--- /dev/null
+++ b/chinese/pine4/files/patch-bx
@@ -0,0 +1,35 @@
+--- pico/makefile.bsf.orig Wed Aug 19 01:57:03 1998
++++ pico/makefile.bsf Sun Apr 2 12:19:40 2000
+@@ -34,10 +34,10 @@
+ MAKE= make
+ OPTIMIZE= # -O
+ PROFILE= # -pg
+-DEBUG= -DDEBUG # -g
++###DEBUG= -DDEBUG # -g
+
+ STDCFLAGS= -DBSDI -DBSDI2 -DPOSIX -DJOB_CONTROL -DMOUSE
+-CFLAGS= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS)
++CFLAGS+= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS)
+
+ # switches for library building
+ LIBCMD= ar
+--- pine/makefile.bsf.orig Fri Aug 28 00:49:51 1998
++++ pine/makefile.bsf Sun Apr 2 12:20:02 2000
+@@ -48,7 +48,7 @@
+ MAKE= make
+ OPTIMIZE= # -O
+ PROFILE= # -pg
+-DEBUG= -DDEBUG # -g
++#DEBUG= -DDEBUG # -g
+
+ CCLIENTDIR= ../c-client
+ PICODIR= ../pico
+@@ -67,7 +67,7 @@
+ `cat $(CCLIENTDIR)/LDFLAGS`
+
+ STDCFLAGS= -DBSDI -DSYSTYPE=\"BSF\" -DMOUSE
+-CFLAGS= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(LDAPCFLAGS) \
++CFLAGS+= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(LDAPCFLAGS) \
+ $(STDCFLAGS)
+
+ OFILES= addrbook.o adrbkcmd.o adrbklib.o args.o bldaddr.o context.o filter.o \