]> git.wh0rd.org - fontconfig.git/commitdiff
Update links to new freedesktop.org locations fc-2_2_97
authorKeith Packard <keithp@keithp.com>
Sun, 5 Dec 2004 07:44:08 +0000 (07:44 +0000)
committerKeith Packard <keithp@keithp.com>
Sun, 5 Dec 2004 07:44:08 +0000 (07:44 +0000)
Add uninstall-local to get rid of fonts.conf and local.conf if they match
    the distributed versions. Fixes 'make distcheck'

ChangeLog
INSTALL
Makefile.am

index 4e00009d24b992e20164e554fc22ca4c65d5a793..4e9184660820d8cbad84290d4cc39d996b825432 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-12-04  Keith Packard  <keithp@keithp.com>
+
+       * INSTALL:
+       Update links to new freedesktop.org locations
+       * Makefile.am:
+       Add uninstall-local to get rid of fonts.conf and local.conf if they
+       match the distributed versions.  Fixes 'make distcheck'
+
 2004-12-04  Keith Packard  <keithp@keithp.com>
 
        * README:
diff --git a/INSTALL b/INSTALL
index 5f511bc5840c20737087031efce46de89a015cb2..ff067cf6fb1c28f5dacae49b66be80bbef0b4c7f 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -25,9 +25,9 @@ important steps:
  7.    Split out the ChangeLog into ChangeLog-2.2.xx with
        the changes since the previous release
  8.    Copy ChangeLog-2.2.xx and fontconfig-2.2.xx.tar.gz to
-       freedesktop.org:~fontconfig/public_html/release
+       freedesktop.org:/srv/fontconfig.freedesktop.org/www/release
  9.    Update the Fontconfig Devel wiki page
-       http://freedesktop.org/Software/FontconfigDevel
+       http://fontconfig.org/wiki/Devel
 10.    Compute md5sums for release files:
                md5sum fontconfig-2.2.xx.tar.gz ChangeLog-2.2.xx
 11.    Post a note to fontconfig@fontconfig.org.  Include the md5sums.
index c1e48a1bc990ab31d2baabf4136191961a1b5986..7079027e027c5340b1994286f7e5324af025136c 100644 (file)
@@ -62,3 +62,27 @@ install-data-local:
          $(INSTALL_DATA) local.conf $(DESTDIR)$(configdir)/local.conf; \
        fi; fi; fi
        if [ x$(DESTDIR) = x ]; then fc-cache/fc-cache -f -v; fi
+
+uninstall-local:
+       if [ -f $(srcdir)/fonts.conf ]; then \
+         if cmp -s $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \
+            echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \
+            rm -f $(DESTDIR)$(configdir)/fonts.conf; \
+         fi; \
+       else if [ -f fonts.conf ]; then \
+         if cmp -s fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \
+            echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \
+            rm -f $(DESTDIR)$(configdir)/fonts.conf; \
+         fi; \
+       fi; fi
+       if [ -f $(srcdir)/local.conf ]; then \
+         if cmp -s $(srcdir)/local.conf $(DESTDIR)$(configdir)/local.conf; then \
+            echo " uninstall standard $(DESTDIR)$(configdir)/local.conf"; \
+            rm -f $(DESTDIR)$(configdir)/local.conf; \
+         fi; \
+       else if [ -f local.conf ]; then \
+         if cmp -s local.conf $(DESTDIR)$(configdir)/local.conf; then \
+            echo " uninstall standard $(DESTDIR)$(configdir)/local.conf"; \
+            rm -f $(DESTDIR)$(configdir)/local.conf; \
+         fi; \
+       fi; fi