diff options
author | hauke <hauke> | 2010-10-17 14:12:10 +0000 |
---|---|---|
committer | hauke <hauke> | 2010-10-17 14:12:10 +0000 |
commit | bfa18aaf5d8d777d901dab99ff51cb0c9218a3f7 (patch) | |
tree | f8f9726997c92342f97e830b1d55fe710d5c8d8e /net/netatalk/patches | |
parent | cd4169f180147c967fa67704666b04ad3e9c7f89 (diff) | |
download | pkgsrc-bfa18aaf5d8d777d901dab99ff51cb0c9218a3f7.tar.gz |
Update Netatalk to 2.1.4
Changes in 2.1.4
~~~~~~~~~~~~~~~~
* FIX: afpd: Downstream fix for FreeBSD PR 148022
* FIX: afpd: Fixes for bugs 3074077 and 3074078
* FIX: afpd: Better handling of symlinks in combination with ACLs and EAs.
Fixes bug 3074076.
* FIX: dbd: Adding a file with the CNID from it's adouble file did
not work in case that CNID was alread occupied in the database
* FIX: macusers: add support for Solaris
* NEW: cnid_metad: use a PID lockfile
* NEW: afpd: prevent log flooding
* UPD: dbd: ignore ".zfs" snapshot directories
* UPD: dbd: support interrupting -re mode
Does not fix pkg/43953, unfortunately.
Diffstat (limited to 'net/netatalk/patches')
-rw-r--r-- | net/netatalk/patches/patch-ah | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/net/netatalk/patches/patch-ah b/net/netatalk/patches/patch-ah index a7e5fb846d3..542fe927a2c 100644 --- a/net/netatalk/patches/patch-ah +++ b/net/netatalk/patches/patch-ah @@ -1,10 +1,10 @@ -$NetBSD: patch-ah,v 1.7 2010/07/19 21:21:25 markd Exp $ +$NetBSD: patch-ah,v 1.8 2010/10/17 14:12:11 hauke Exp $ ---- config/Makefile.in.orig 2010-02-07 18:59:32.000000000 +0000 +--- config/Makefile.in.orig 2010-10-15 10:10:05.000000000 +0000 +++ config/Makefile.in -@@ -668,12 +668,14 @@ uninstall-local: - rm -f $(DESTDIR)$(pkgconfdir)/$$f; \ - done +@@ -598,12 +598,14 @@ uninstall-local: + + @USE_DEBIAN_TRUE@ rm -f $(DESTDIR)/etc/default/netatalk; +egconfdir = @prefix@/share/examples/netatalk + @@ -12,9 +12,10 @@ $NetBSD: patch-ah,v 1.7 2010/07/19 21:21:25 markd Exp $ - $(mkinstalldirs) $(DESTDIR)$(pkgconfdir) + $(mkinstalldirs) $(DESTDIR)$(egconfdir) for f in $(CONFFILES) $(GENFILES); do \ - if test "x$(OVERWRITE_CONFIG)" = "xyes" -o ! -f $(DESTDIR)$(pkgconfdir)/$$f; then \ +- if test "x$(OVERWRITE_CONFIG)" = "xyes" -o ! -f $(DESTDIR)$(pkgconfdir)/$$f; then \ - echo "$(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir)"; \ - $(INSTALL_DATA) $$f $(DESTDIR)$(pkgconfdir); \ ++ if test "x$(OVERWRITE_CONFIG)" = "xyes" -o ! -f $(DESTDIR)$(egconfdir)/$$f; then \ + echo "$(INSTALL_DATA) $$f $(DESTDIR)$(egconfdir)"; \ + $(INSTALL_DATA) $$f $(DESTDIR)$(egconfdir); \ else \ |