mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
ead1524ebb
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
28 lines
564 B
Plaintext
28 lines
564 B
Plaintext
--- 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 $@
|