Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src add fc-query and fc-scan.
details: https://anonhg.NetBSD.org/src/rev/61991add061d
branches: trunk
changeset: 758915:61991add061d
user: mrg <mrg%NetBSD.org@localhost>
date: Sun Nov 21 07:20:06 2010 +0000
description:
add fc-query and fc-scan.
diffstat:
distrib/sets/lists/xbase/mi | 10 +++++++++-
external/mit/xorg/bin/Makefile | 5 +++--
external/mit/xorg/bin/fc-query/Makefile | 18 ++++++++++++++++++
external/mit/xorg/bin/fc-scan/Makefile | 18 ++++++++++++++++++
4 files changed, 48 insertions(+), 3 deletions(-)
diffs (103 lines):
diff -r df04909ef276 -r 61991add061d distrib/sets/lists/xbase/mi
--- a/distrib/sets/lists/xbase/mi Sun Nov 21 06:01:49 2010 +0000
+++ b/distrib/sets/lists/xbase/mi Sun Nov 21 07:20:06 2010 +0000
@@ -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
diff -r df04909ef276 -r 61991add061d external/mit/xorg/bin/Makefile
--- a/external/mit/xorg/bin/Makefile Sun Nov 21 06:01:49 2010 +0000
+++ b/external/mit/xorg/bin/Makefile Sun Nov 21 07:20:06 2010 +0000
@@ -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 \
diff -r df04909ef276 -r 61991add061d external/mit/xorg/bin/fc-query/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/mit/xorg/bin/fc-query/Makefile Sun Nov 21 07:20:06 2010 +0000
@@ -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>
diff -r df04909ef276 -r 61991add061d external/mit/xorg/bin/fc-scan/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/mit/xorg/bin/fc-scan/Makefile Sun Nov 21 07:20:06 2010 +0000
@@ -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>
Home |
Main Index |
Thread Index |
Old Index