blob: 34636c041b8cedfe618fc16e6d1cd8d428912814 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: Makefile,v 1.5 2023/01/21 04:04:30 mrg Exp $
# When updating fontconfig, be sure to update the fonts.conf. This
# requires running ./configure like this:
#
# env PKG_CONFIG_PATH=/usr/X11R7/share/pkgconfig \
# ./configure \
# --prefix=/usr/X11R7 --localstatedir=/var \
# --with-default-fonts=/usr/X11R7/lib/X11/fonts \
# --with-add-fonts=/usr/pkg/lib/X11/fonts,/usr/pkg/share/fonts \
# --with-configdir=conf.d
# cd src && gmake fcalias.h fcaliastail.h fcftalias.h fcftaliastail.h fcobjshash.h
#
# and then running gmake fonts.conf and copying the new file here.
# (gmake is required here as the FC_CONFIGDIR pattern uses $(subst).)
#
SUBDIR= conf.d conf.avail
.include <bsd.own.mk>
.PATH: ${X11SRCDIR.fontconfig}
CONFIGFILES= \
fonts.conf \
fonts.dtd
FILESDIR= \
/etc/fonts
.include <bsd.x11.mk>
.include <bsd.prog.mk>
.include <bsd.subdir.mk>
|