]> git.wh0rd.org - fontconfig.git/blob - conf.d/Makefile.am
Split 40-generic.conf into 40-nonlatin.conf and 45-latin.conf
[fontconfig.git] / conf.d / Makefile.am
1 #
2 # $Id$
3 #
4 # Copyright © 2005 Keith Packard
5 #
6 # Permission to use, copy, modify, distribute, and sell this software and its
7 # documentation for any purpose is hereby granted without fee, provided that
8 # the above copyright notice appear in all copies and that both that
9 # copyright notice and this permission notice appear in supporting
10 # documentation, and that the name of Keith Packard not be used in
11 # advertising or publicity pertaining to distribution of the software without
12 # specific, written prior permission. Keith Packard makes no
13 # representations about the suitability of this software for any purpose. It
14 # is provided "as is" without express or implied warranty.
15 #
16 # KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 # EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 # PERFORMANCE OF THIS SOFTWARE.
23
24 CONF_FILES = \
25 README \
26 10-autohint.conf \
27 10-no-sub-pixel.conf \
28 10-sub-pixel-bgr.conf \
29 10-sub-pixel-rgb.conf \
30 10-sub-pixel-vbgr.conf \
31 10-sub-pixel-vrgb.conf \
32 10-unhinted.conf \
33 20-fix-globaladvance.conf \
34 20-lohit-gujarati.conf \
35 20-unhint-small-vera.conf \
36 25-unhint-nonlatin.conf \
37 30-urw-aliases.conf \
38 30-metric-aliases.conf
39 40-nonlatin.conf \
40 45-latin.conf \
41 49-sansserif.conf \
42 50-user.conf \
43 51-local.conf \
44 60-latin.conf \
45 65-fonts-persian.conf \
46 65-nonlatin.conf \
47 69-unifont.conf \
48 70-no-bitmaps.conf \
49 70-yes-bitmaps.conf \
50 80-delicious.conf \
51 90-synthetic.conf
52
53 CONF_LINKS = \
54 20-fix-globaladvance.conf \
55 20-lohit-gujarati.conf \
56 20-unhint-small-vera.conf \
57 25-unhint-nonlatin.conf \
58 30-urw-aliases.conf \
59 30-metric-aliases.conf
60 40-nonlatin.conf \
61 45-latin.conf \
62 49-sansserif.conf \
63 50-user.conf \
64 51-local.conf \
65 60-latin.conf \
66 65-fonts-persian.conf \
67 65-nonlatin.conf \
68 69-unifont.conf \
69 80-delicious.conf \
70 90-synthetic.conf
71
72 EXTRA_DIST = $(CONF_FILES)
73
74 configdir=$(CONFDIR)
75 confavaildir=$(configdir)/conf.avail
76 confddir=$(configdir)/conf.d
77
78 confavail_DATA=$(CONF_FILES)
79
80 install-data-local:
81 mkdir -p ${DESTDIR}${confddir}
82 @(echo cd ${DESTDIR}${confddir}; \
83 cd ${DESTDIR}${confddir}; \
84 for i in ${CONF_LINKS}; do \
85 rm -f $$i; \
86 echo rm -f $$i";" ln -s ../conf.avail/$$i .; \
87 ln -s ../conf.avail/$$i .; \
88 done)