add fc-query and fc-scan.

This commit is contained in:
mrg 2010-11-21 07:20:06 +00:00
parent 01cf639de2
commit 12736001f4
4 changed files with 48 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.96 2010/11/21 02:43:31 mrg Exp $
# $NetBSD: mi,v 1.97 2010/11/21 07:26:40 mrg Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@ -1365,6 +1365,8 @@
./usr/X11R7/bin/fc-cat -unknown- xorg
./usr/X11R7/bin/fc-list -unknown- xorg
./usr/X11R7/bin/fc-match -unknown- xorg
./usr/X11R7/bin/fc-query -unknown- xorg
./usr/X11R7/bin/fc-scan -unknown- xorg
./usr/X11R7/bin/fillblnk -unknown- xorg
./usr/X11R7/bin/fonttosfnt -unknown- xorg
./usr/X11R7/bin/fslsfonts -unknown- xorg
@ -2475,6 +2477,8 @@
./usr/X11R7/man/cat1/fc-cat.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fc-list.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fc-match.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fc-query.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fc-scan.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fonttosfnt.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fslsfonts.0 -unknown- .cat,xorg
./usr/X11R7/man/cat1/fstobdf.0 -unknown- .cat,xorg
@ -2610,6 +2614,8 @@
./usr/X11R7/man/html1/fc-cat.html -unknown- html,xorg
./usr/X11R7/man/html1/fc-list.html -unknown- html,xorg
./usr/X11R7/man/html1/fc-match.html -unknown- html,xorg
./usr/X11R7/man/html1/fc-query.html -unknown- html,xorg
./usr/X11R7/man/html1/fc-scan.html -unknown- html,xorg
./usr/X11R7/man/html1/fonttosfnt.html -unknown- html,xorg
./usr/X11R7/man/html1/fslsfonts.html -unknown- html,xorg
./usr/X11R7/man/html1/fstobdf.html -unknown- html,xorg
@ -2745,6 +2751,8 @@
./usr/X11R7/man/man1/fc-cat.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fc-list.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fc-match.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fc-query.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fc-scan.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fonttosfnt.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fslsfonts.1 -unknown- .man,xorg
./usr/X11R7/man/man1/fstobdf.1 -unknown- .man,xorg

View File

@ -1,7 +1,8 @@
# $NetBSD: Makefile,v 1.9 2010/11/21 06:01:49 mrg Exp $
# $NetBSD: Makefile,v 1.10 2010/11/21 07:20:06 mrg Exp $
SUBDIR= appres bdftopcf bdftruncate beforelight bitmap ccmakedep \
cleanlinks cxpm editres fc-cache fc-cat fc-list fc-match \
cleanlinks cxpm editres \
fc-cache fc-cat fc-list fc-match fc-query fc-scan \
fonttosfnt fslsfonts fstobdf glxgears glxinfo \
iceauth ico imake listres lndir luit makedepend \
makeg makestrs mergelib mkdirhier mkfontdir \

18
external/mit/xorg/bin/fc-query/Makefile vendored Normal file
View File

@ -0,0 +1,18 @@
# $NetBSD
.include <bsd.own.mk>
PROG= fc-query
CPPFLAGS+= -I${X11SRCDIR.fontconfig} -I. -I${DESTDIR}${X11INCDIR}/freetype2
LDADD+= -lfontconfig -lfreetype -lexpat
DPADD+= ${LIBFONTCONFIG} ${LIBFREETYPE} ${LIBEXPAT}
.PATH: ${X11SRCDIR.fontconfig}/${PROG}
FCARCH_DEPFILE= fc-cat.c
.include "../../lib/fontconfig/src/Makefile.fcarch"
.include <bsd.x11.mk>
.include <bsd.prog.mk>

18
external/mit/xorg/bin/fc-scan/Makefile vendored Normal file
View File

@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.1 2010/11/21 07:20:06 mrg Exp $
.include <bsd.own.mk>
PROG= fc-scan
CPPFLAGS+= -I${X11SRCDIR.fontconfig} -I. -I${DESTDIR}${X11INCDIR}/freetype2
LDADD+= -lfontconfig -lfreetype -lexpat
DPADD+= ${LIBFONTCONFIG} ${LIBFREETYPE} ${LIBEXPAT}
.PATH: ${X11SRCDIR.fontconfig}/${PROG}
FCARCH_DEPFILE= fc-cat.c
.include "../../lib/fontconfig/src/Makefile.fcarch"
.include <bsd.x11.mk>
.include <bsd.prog.mk>