blob: 96c47fa8d41747d04fe1efd3928a802e86cee577 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# $OpenBSD: Makefile,v 1.5 2013/03/16 14:56:53 matthieu Exp $
FONTCONFIG = ${.CURDIR}/../../../dist/fontconfig
CONFIGDIR = /etc/fonts/conf.d
CONFAVAILDIR= /etc/fonts/conf.avail
DOC_FILES= \
README
CONF_LINKS = \
10-autohint.conf \
10-scale-bitmap-fonts.conf \
20-unhint-small-vera.conf \
30-lucida-aliases.conf \
30-urw-aliases.conf \
30-metric-aliases.conf \
31-nonmst.conf \
40-nonlatin.conf \
45-latin.conf \
49-sansserif.conf \
50-user.conf \
51-local.conf \
60-latin.conf \
65-fonts-persian.conf \
65-nonlatin.conf \
69-unifont.conf \
80-delicious.conf \
90-synthetic.conf
AVAIL_FILES = \
README \
10-autohint.conf \
10-no-sub-pixel.conf \
10-scale-bitmap-fonts.conf \
10-sub-pixel-bgr.conf \
10-sub-pixel-rgb.conf \
10-sub-pixel-vbgr.conf \
10-sub-pixel-vrgb.conf \
10-unhinted.conf \
11-lcdfilter-default.conf \
11-lcdfilter-legacy.conf \
11-lcdfilter-light.conf \
20-unhint-small-vera.conf \
25-unhint-nonlatin.conf \
30-lucida-aliases.conf \
30-urw-aliases.conf \
30-metric-aliases.conf \
31-nonmst.conf \
40-nonlatin.conf \
45-latin.conf \
49-sansserif.conf \
50-user.conf \
51-local.conf \
60-latin.conf \
65-fonts-persian.conf \
65-khmer.conf \
65-nonlatin.conf \
69-unifont.conf \
70-no-bitmaps.conf \
70-yes-bitmaps.conf \
80-delicious.conf \
90-synthetic.conf
all cleandir:
install:
@for i in $(AVAIL_FILES); do \
echo ${INSTALL_DATA} $$i $(DESTDIR)${CONFAVAILDIR}; \
${INSTALL_DATA} ${FONTCONFIG}/conf.d/$$i $(DESTDIR)${CONFAVAILDIR}; \
done
@(echo cd $(DESTDIR)$(CONFIGDIR); \
cd $(DESTDIR)$(CONFIGDIR); \
for i in $(CONF_LINKS); do \
echo rm $$i";" ln -s $(CONFAVAILDIR)/$$i .; \
rm -f $$i; \
ln -s $(CONFAVAILDIR)/$$i .; \
done)
NOOBJ=
.include <bsd.own.mk>
.include <bsd.xorg.mk>
|