4 # Copyright © 2003 Keith Packard
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.
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.
25 SUBDIRS=fontconfig fc-case fc-lang fc-glyphname src \
26 fc-cache fc-cat fc-list fc-match conf.d $(DOCSRC) test
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 \
46 debian/po/POTFILES.in \
47 debian/po/templates.pot \
69 pkgconfigdir=$(libdir)/pkgconfig
70 pkgconfig_DATA = fontconfig.pc
76 RUN_FC_CACHE_TEST=false
78 RUN_FC_CACHE_TEST=test -z "$(DESTDIR)"
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; \
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; \
94 if $(RUN_FC_CACHE_TEST); then \
95 echo " fc-cache/fc-cache -f -v"; \
96 fc-cache/fc-cache -f -v; \
99 echo "*** Warning: fonts.cache not built"; \
101 echo "*** Generate this file manually on host system using fc-cache"; \
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; \
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; \
118 debuild debuild-signed: debuild-dirs
119 (cd $(distdir)/debian && debuild)
121 debuild-unsigned: debuild-dirs
122 (cd $(distdir)/debian && debuild -us -uc)
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