CVS commit: src/external/mit/xorg/tools/bdftopcf

2018-03-11 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar 11 11:01:08 UTC 2018

Modified Files:
src/external/mit/xorg/tools/bdftopcf: Makefile

Log Message:
move the src list from libXfont stuff to local stuff.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/mit/xorg/tools/bdftopcf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/tools/bdftopcf/Makefile
diff -u src/external/mit/xorg/tools/bdftopcf/Makefile:1.6 src/external/mit/xorg/tools/bdftopcf/Makefile:1.7
--- src/external/mit/xorg/tools/bdftopcf/Makefile:1.6	Fri May 31 05:24:50 2013
+++ src/external/mit/xorg/tools/bdftopcf/Makefile	Sun Mar 11 11:01:07 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2013/05/31 05:24:50 mrg Exp $
+#	$NetBSD: Makefile,v 1.7 2018/03/11 11:01:07 mrg Exp $
 
 NOMAN=		1
 
@@ -9,26 +9,28 @@ HOSTPROG=	bdftopcf
 
 FREETYPE=   ${X11SRCDIR.freetype}
 
-SRCS=		bdftopcf.c
+SRCS=		atom.c \
+		bdfread.c \
+		bdfutils.c \
+		bitmap.c \
+		bitmaputil.c \
+		bufio.c \
+		defaults.c \
+		fileio.c \
+		filewr.c \
+		fontaccel.c \
+		fontink.c \
+		pcfwrite.c \
+		private.c \
+		utilbitmap.c \
+		bdftopcf.c
 
 HOST_CPPFLAGS+=	-I${DESTDIR}${X11INCDIR} \
 		-I${DESTDIR}${X11INCDIR} \
-		-I${DESTDIR}${X11INCDIR}/X11/fonts \
 		-I${DESTDIR}${X11INCDIR}/freetype2 \
-		-I${X11SRCDIR.Xfont}/src/stubs \
 		-DBDFFORMAT -DPCFFORMAT -DSNFFORMAT -DX_GZIP_FONT_COMPRESSION \
 		-DFONT_ENCODINGS_DIRECTORY=\"${X11FONTDIR}/encodings/encodings.dir\" \
-		-DPACKAGE_STRING="\"NetBSD tool bdftopcf 1.0.4\""
-
-.PATH:		${X11SRCDIR.Xfont}/src/bitmap
-SRCS+=		bdfread.c bdfutils.c bitmap.c bitmaputil.c fontink.c \
-		pcfread.c pcfwrite.c
-
-.PATH:		${X11SRCDIR.Xfont}/src/fontfile
-SRCS+=		bufio.c decompress.c defaults.c fileio.c filewr.c gunzip.c
-
-.PATH:		${X11SRCDIR.Xfont}/src/util
-SRCS+=		atom.c fontaccel.c private.c utilbitmap.c
+		-DPACKAGE_STRING="\"NetBSD tool bdftopcf 1.1\""
 
 LDADD+=		-lz
 



CVS commit: src/external/mit/xorg/tools/bdftopcf

2010-12-19 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Dec 19 13:04:54 UTC 2010

Modified Files:
src/external/mit/xorg/tools/bdftopcf: Makefile

Log Message:
Disable bzip2 support in tools bdftopcf(1).
We don't use bzip2 fonts on build and some OS doesn't have bzip2 headers.
Ok'ed by mrg@, martin@, fixes PR/44138.

Should be pulled up to netbsd-5 (and netbsd-5-1).


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/tools/bdftopcf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/tools/bdftopcf/Makefile
diff -u src/external/mit/xorg/tools/bdftopcf/Makefile:1.4 src/external/mit/xorg/tools/bdftopcf/Makefile:1.5
--- src/external/mit/xorg/tools/bdftopcf/Makefile:1.4	Sat Aug 14 11:12:16 2010
+++ src/external/mit/xorg/tools/bdftopcf/Makefile	Sun Dec 19 13:04:54 2010
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2010/08/14 11:12:16 mrg Exp $
+#	$NetBSD: Makefile,v 1.5 2010/12/19 13:04:54 tsutsui Exp $
 
 NOMAN=		1
 
@@ -16,7 +16,7 @@
 		-I${DESTDIR}${X11INCDIR}/X11/fonts \
 		-I${DESTDIR}${X11INCDIR}/freetype2 \
 		-I${X11SRCDIR.Xfont}/src/stubs \
-		-DBDFFORMAT -DPCFFORMAT -DSNFFORMAT -DX_GZIP_FONT_COMPRESSION -DX_BZIP2_FONT_COMPRESSION \
+		-DBDFFORMAT -DPCFFORMAT -DSNFFORMAT -DX_GZIP_FONT_COMPRESSION \
 		-DFONT_ENCODINGS_DIRECTORY=\${X11FONTDIR}/encodings/encodings.dir\
 
 .PATH:		${X11SRCDIR.Xfont}/src/bitmap
@@ -24,12 +24,12 @@
 		pcfread.c pcfwrite.c
 
 .PATH:		${X11SRCDIR.Xfont}/src/fontfile
-SRCS+=		bufio.c decompress.c defaults.c fileio.c filewr.c gunzip.c bunzip2.c
+SRCS+=		bufio.c decompress.c defaults.c fileio.c filewr.c gunzip.c
 
 .PATH:		${X11SRCDIR.Xfont}/src/util
 SRCS+=		atom.c fontaccel.c private.c utilbitmap.c
 
-LDADD+=		-lz -lbz2
+LDADD+=		-lz
 
 .include bsd.x11.mk
 .include bsd.hostprog.mk



CVS commit: src/external/mit/xorg/tools/bdftopcf

2009-06-09 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Wed Jun 10 02:01:39 UTC 2009

Modified Files:
src/external/mit/xorg/tools/bdftopcf: Makefile

Log Message:
enable bz2 support.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/tools/bdftopcf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/tools/bdftopcf/Makefile
diff -u src/external/mit/xorg/tools/bdftopcf/Makefile:1.1.1.1 src/external/mit/xorg/tools/bdftopcf/Makefile:1.2
--- src/external/mit/xorg/tools/bdftopcf/Makefile:1.1.1.1	Tue Jul 29 05:01:23 2008
+++ src/external/mit/xorg/tools/bdftopcf/Makefile	Wed Jun 10 02:01:39 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:23 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2009/06/10 02:01:39 mrg Exp $
 
 NOMAN=		1
 
@@ -16,7 +16,7 @@
 		-I${DESTDIR}${X11INCDIR}/X11/fonts \
 		-I${DESTDIR}${X11INCDIR}/freetype2 \
 		-I${X11SRCDIR.Xfont}/src/stubs \
-		-DBDFFORMAT -DPCFFORMAT -DSNFFORMAT -DX_GZIP_FONT_COMPRESSION \
+		-DBDFFORMAT -DPCFFORMAT -DSNFFORMAT -DX_GZIP_FONT_COMPRESSION -DX_BZIP2_FONT_COMPRESSION \
 		-DFONT_ENCODINGS_DIRECTORY=\${X11FONTDIR}/encodings/encodings.dir\
 
 .PATH:		${X11SRCDIR.Xfont}/src/bitmap