aboutsummaryrefslogtreecommitdiffstats
path: root/print/afm/files
diff options
context:
space:
mode:
authorljo <ljo@FreeBSD.org>1994-11-24 00:05:46 +0800
committerljo <ljo@FreeBSD.org>1994-11-24 00:05:46 +0800
commit9761dfcff1cf9aee11dfbd664ebf887fc6b93c06 (patch)
treefc2e03c2889030912646f9d7d28f9a77cf5db8f5 /print/afm/files
parent8ab695f60f2f2a8ecb65df4d5a2ac1712296e973 (diff)
downloadfreebsd-ports-gnome-9761dfcff1cf9aee11dfbd664ebf887fc6b93c06.tar.gz
freebsd-ports-gnome-9761dfcff1cf9aee11dfbd664ebf887fc6b93c06.tar.zst
freebsd-ports-gnome-9761dfcff1cf9aee11dfbd664ebf887fc6b93c06.zip
Adobe font metrics as used by FlexFAX.
I'm having problems with the package.
Diffstat (limited to 'print/afm/files')
-rw-r--r--print/afm/files/patch-aa37
1 files changed, 37 insertions, 0 deletions
diff --git a/print/afm/files/patch-aa b/print/afm/files/patch-aa
new file mode 100644
index 000000000000..0611a175c4a9
--- /dev/null
+++ b/print/afm/files/patch-aa
@@ -0,0 +1,37 @@
+*** Makefile Sun Apr 18 16:07:07 1993
+--- ../../Makefile.new Wed Nov 23 06:42:43 1994
+***************
+*** 36,43 ****
+ # lptops program expects them to reside in files without a ".afm"
+ # suffix.
+ #
+! DEPTH=..
+! include ${DEPTH}/defs
+
+ AFMFILES=\
+ AvantGarde-Book.afm \
+--- 36,43 ----
+ # lptops program expects them to reside in files without a ".afm"
+ # suffix.
+ #
+! AFMDIR=/usr/local/lib/afm
+! INSTALL=install
+
+ AFMFILES=\
+ AvantGarde-Book.afm \
+***************
+*** 80,85 ****
+ ${NULL}
+
+ install: ${AFMFILES}
+ for i in ${AFMFILES}; do \
+! ${INSTALL} -F ${AFMDIR} -m 444 -src $$i -O `basename $$i .afm`; \
+ done
+--- 80,86 ----
+ ${NULL}
+
+ install: ${AFMFILES}
++ [ -d ${AFMDIR} ] || mkdir ${AFMDIR}
+ for i in ${AFMFILES}; do \
+! ${INSTALL} -c -o bin -g bin -m 444 $$i ${AFMDIR}/`basename $$i .afm`; \
+ done