freebsd-ports/print/latex-cjk/files/patch-aa
Steve Price ead1524ebb Fromm maintainer:
1. Change freetype-1.2 to freetype-1.3 in post-install, so
   it can find freetype sources to build ttf2pk & ttf2tfm.
2. It no longer uses moettf, but Arphic ttf instead, which
   has no character loss and IMHO much more beautiful. :)
3. Generates GB tfms from Arphic fonts.
4. Update maintainer's address.

PR:		16042
Submitted by:	maintainer
2000-01-24 06:28:34 +00:00

27 lines
564 B
Text

--- Makefile.orig Thu Jan 1 08:00:00 1970
+++ Makefile Sat Feb 20 08:10:54 1999
@@ -0,0 +1,24 @@
+#
+# Makefile for CJK to apply on Unix systems more smoothly.
+#
+
+CP = /bin/cp
+CHOWN = /usr/sbin/chown
+
+LATEX_DIR = $(PREFIX)/share/texmf/tex/latex
+CJK_DIR = $(LATEX_DIR)/CJK
+
+all:
+ $(MAKE) -C utils $@
+
+install: install-texinput
+ $(MAKE) -C utils $@
+
+install-texinput:
+ (rm -fr $(CJK_DIR)); && \
+ (mkdir -p $(CJK_DIR)); && \
+ ($(CP) -R texinput/* $(CJK_DIR)); && \
+ ($(CHOWN) -R $(SHAREOWN).$(SHAREGRP) $(CJK_DIR))
+
+clean:
+ $(MAKE) -C utils $@