Move debian-specific conf file examples upstream.
[platform/upstream/fontconfig.git] / Makefile.am
1
2 #  $Id$
3
4 #  Copyright © 2003 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 DOCSRC=@DOCSRC@
25 SUBDIRS=fontconfig fc-case fc-lang fc-glyphname src \
26         fc-cache fc-list fc-match conf.d $(DOCSRC) test
27
28 DEBIAN = \
29         debian/changelog \
30         debian/compat \
31         debian/control \
32         debian/copyright \
33         debian/fontconfig.config \
34         debian/fontconfig.defoma \
35         debian/fontconfig.dirs \
36         debian/fontconfig.install \
37         debian/fontconfig.postinst \
38         debian/fontconfig.postrm \
39         debian/fontconfig.templates \
40         debian/fontconfig-udeb.install \
41         debian/libfontconfig1-dev.install \
42         debian/libfontconfig1.install \
43         debian/local.conf.md5sum \
44         debian/README.Debian \
45         debian/rules \
46         debian/po/POTFILES.in \
47         debian/po/templates.pot \
48         debian/po/cs.po \
49         debian/po/da.po \
50         debian/po/de.po \
51         debian/po/es.po \
52         debian/po/fr.po \
53         debian/po/ja.po \
54         debian/po/nl.po \
55         debian/po/pt_BR.po \
56         debian/po/pt.po \
57         debian/po/tr.po \
58         debian/po/zh_CN.po
59          
60 EXTRA_DIST = \
61         fontconfig.pc.in \
62         fonts.conf.in \
63         fonts.dtd \
64         fontconfig.spec.in \
65         fontconfig.spec \
66         fontconfig-zip.in \
67         $(DEBIAN)
68
69 pkgconfigdir=$(libdir)/pkgconfig
70 pkgconfig_DATA = fontconfig.pc
71
72 configdir=$(CONFDIR)
73 config_DATA=fonts.dtd
74
75 if CROSS_COMPILING
76   RUN_FC_CACHE_TEST=false
77 else
78   RUN_FC_CACHE_TEST=test -z "$(DESTDIR)"
79 endif
80
81 install-data-local:
82         $(mkinstalldirs) $(DESTDIR)$(configdir)
83         if [ -f $(DESTDIR)$(configdir)/fonts.conf ]; then \
84           echo "backing up existing $(DESTDIR)$(configdir)/fonts.conf"; \
85           mv $(DESTDIR)$(configdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf.bak; \
86         fi
87         if [ -f $(srcdir)/fonts.conf ]; then \
88           echo " $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf"; \
89           $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \
90         else if [ -f fonts.conf ]; then \
91           echo " $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf"; \
92           $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \
93         fi; fi
94         if $(RUN_FC_CACHE_TEST); then \
95             echo " fc-cache/fc-cache -f -v"; \
96             fc-cache/fc-cache -f -v; \
97         else \
98             echo "***"; \
99             echo "*** Warning: fonts.cache not built"; \
100             echo "***"; \
101             echo "*** Generate this file manually on host system using fc-cache"; \
102             echo "***"; \
103         fi
104
105 uninstall-local:
106         if [ -f $(srcdir)/fonts.conf ]; then \
107           if cmp -s $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \
108              echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \
109              rm -f $(DESTDIR)$(configdir)/fonts.conf; \
110           fi; \
111         else if [ -f fonts.conf ]; then \
112           if cmp -s fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \
113              echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \
114              rm -f $(DESTDIR)$(configdir)/fonts.conf; \
115           fi; \
116         fi; fi
117
118 debuild debuild-signed: debuild-dirs
119         (cd $(distdir)/debian && debuild)
120
121 debuild-unsigned: debuild-dirs
122         (cd $(distdir)/debian && debuild -us -uc)
123
124 debuild-dirs: distdir
125         rm -f $(PACKAGE)_$(VERSION).orig.tar.gz
126         rm -rf $(distdir).orig
127         cp -a $(distdir) $(distdir).orig
128         rm -rf $(distdir).orig/debian