summaryrefslogtreecommitdiff
path: root/japanese/e2ps/files
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2004-10-31 13:25:45 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2004-10-31 13:25:45 +0000
commitbb2eec27666607085e38da274bc7612319602b1f (patch)
tree5a0eb103b352ad59254c77fe3cb876fd417c3f1c /japanese/e2ps/files
parento Update to 1.2.1. (diff)
Update to 4.34.
PR: ports-jp/14869, ports/71372 Submitted by: NAKAMURA Takeshi <ta.nakamura@crs.co.jp> Approved by: maintainer timeout (about 1 week)
Notes
Notes: svn path=/head/; revision=120527
Diffstat (limited to 'japanese/e2ps/files')
-rw-r--r--japanese/e2ps/files/patch-ac53
1 files changed, 34 insertions, 19 deletions
diff --git a/japanese/e2ps/files/patch-ac b/japanese/e2ps/files/patch-ac
index 5113d49e792c..b2b3156b6e43 100644
--- a/japanese/e2ps/files/patch-ac
+++ b/japanese/e2ps/files/patch-ac
@@ -1,19 +1,34 @@
-*** Makefile.orig Wed Nov 4 22:42:02 1998
---- Makefile Wed Jan 5 12:32:13 2000
-***************
-*** 27,33 ****
- FONTSIZE = 10.0
-
- # デフォルトプリンタ
-! PRINTER = \"papyrus\"
-
- # 定義群
- DEFINES = \
---- 27,33 ----
- FONTSIZE = 10.0
-
- # デフォルトプリンタ
-! PRINTER = \"lp\"
-
- # 定義群
- DEFINES = \
+--- Makefile.orig Mon May 20 11:41:41 2002
++++ Makefile Mon Oct 25 23:21:09 2004
+@@ -6,7 +6,7 @@
+
+
+ # Directory to install e2ps
+-E2PS_INST_DIR = /usr/local/bin
++E2PS_INST_DIR = ${PREFIX}/bin
+
+ # Tab width
+ TABSTOP = 8
+@@ -52,15 +52,12 @@
+
+
+ # C and C args
+-CC = gcc
++# CC = gcc
+ CC_ARGS = -Wall
+ # CC_ARGS = -Wall -O2
+ CC_LIB =
+
+-# strip command
+-STRIP = strip
+-
+-CFLAGS = $(CC_ARGS) $(DEFINES) $(CC_LIB)
++CFLAGS += $(CC_ARGS) $(DEFINES) $(CC_LIB)
+
+ SRC = e2ps.c ps-font.c wtkf.c
+ OBJ = e2ps.o ps-font.o wtkf.o
+@@ -81,4 +78,3 @@
+
+ e2ps: $(OBJ)
+ $(CC) -o $@ $(OBJ) $(CFLAGS)
+- $(STRIP) $@