diff options
author | jfieber <jfieber@FreeBSD.org> | 1997-07-16 02:18:28 +0000 |
---|---|---|
committer | jfieber <jfieber@FreeBSD.org> | 1997-07-16 02:18:28 +0000 |
commit | 877c9ce30384f7ecd77aec9d64fbe73f13ab0fac (patch) | |
tree | 2a024260fa79f9272de6ce0ad2b690650dcfeb31 /x11-fonts/xmbdfed/files/patch-aa | |
parent | a1cf2827f8b9268a19538556723c9e10c446ecdf (diff) | |
download | FreeBSD-ports-877c9ce30384f7ecd77aec9d64fbe73f13ab0fac.zip FreeBSD-ports-877c9ce30384f7ecd77aec9d64fbe73f13ab0fac.tar.gz |
A Motif tool for editing X11 bitmap fonts
Diffstat (limited to 'x11-fonts/xmbdfed/files/patch-aa')
-rw-r--r-- | x11-fonts/xmbdfed/files/patch-aa | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/x11-fonts/xmbdfed/files/patch-aa b/x11-fonts/xmbdfed/files/patch-aa new file mode 100644 index 0000000..9466db2 --- /dev/null +++ b/x11-fonts/xmbdfed/files/patch-aa @@ -0,0 +1,70 @@ +*** Makefile.orig Wed May 14 16:23:19 1997 +--- Makefile Fri Jun 20 22:46:47 1997 +*************** +*** 22,29 **** + # + # $Id: Makefile,v 1.9 1997/05/14 21:23:14 mleisher Exp $ + # +! CC = gcc +! CFLAGS = -g -Wall + + OTHER = README COPYRIGHTS Makefile Imakefile.lesstif xmbdfedrc xmbdfed.man + +--- 22,29 ---- + # + # $Id: Makefile,v 1.9 1997/05/14 21:23:14 mleisher Exp $ + # +! #CC = gcc +! #CFLAGS = -g -Wall + + OTHER = README COPYRIGHTS Makefile Imakefile.lesstif xmbdfedrc xmbdfed.man + +*************** +*** 45,57 **** + # files with a ".gz" extension. If you don't care about HBF fonts, just + # comment this line out. + # +! HBFDEFS = -Dunix -DIN_MEMORY -DGUNZIP_CMD="\"/usr/local/bin/gunzip -c\"" + + # + # Uncomment these for SunOS. + # +! INCS = -I/usr/local/include/X11R5 +! LIBS = -L/usr/local/lib/X11R5 -lXm -lXmu -lXt -lX11 + + # + # Uncomment these for Solaris. +--- 45,57 ---- + # files with a ".gz" extension. If you don't care about HBF fonts, just + # comment this line out. + # +! HBFDEFS = -Dunix -DIN_MEMORY -DGUNZIP_CMD="\"/usr/bin/gunzip -c\"" + + # + # Uncomment these for SunOS. + # +! #INCS = -I/usr/local/include/X11R5 +! #LIBS = -L/usr/local/lib/X11R5 -lXm -lXmu -lXt -lX11 + + # + # Uncomment these for Solaris. +*************** +*** 65,72 **** +--- 65,81 ---- + #INCS = -I/usr/X11/include -I/usr/Motif-2.0.1/include + #LIBS = -L/usr/Motif-2.0.1/lib -lXm -L/usr/X11/lib -lXpm -lXmu -lXt -lX11 -lSM -lICE + ++ INCS = -I${X11BASE}/include ++ LIBS = -L${X11BASE}/lib ${MOTIFLIB} -lXpm -lXmu -lXt -lX11 -lSM -lICE -lXext ++ + + all: xmbdfed ++ ++ install: xmbdfed ++ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ++ xmbdfed ${X11BASE}/bin/xmbdfed ++ ${INSTALL} ${COPY} -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} \ ++ xmbdfed.man ${X11BASE}/man/man1/xmbdfed.1 + + xmbdfed: $(OBJS) + $(PURIFY) $(CC) $(STATIC) $(CFLAGS) -o xmbdfed $(OBJS) $(LIBS) |