diff options
author | cjep <cjep@pkgsrc.org> | 2004-05-05 15:25:40 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2004-05-05 15:25:40 +0000 |
commit | 468dfbdc5a48a0b38dfda6beaa68348de52649be (patch) | |
tree | abd8caa897434d65fa845d3bed0639a991ecff34 /news/leafnode/patches | |
parent | d114281fe5a719f44937b33fa3484e22da608511 (diff) | |
download | pkgsrc-468dfbdc5a48a0b38dfda6beaa68348de52649be.tar.gz |
Update to 1.9.52. Changes since previous version (1.9.49) include:
* nntpd will now disable ln_log()'s sending its logging to the
console (stderr usually), to prevent them from being seen by the
newsreader, which then gets confused.
* Usage fixes and usage info update
* Fix memory leaks
* Other bug fixes
For a full listing, please see the ChangeLog supplied with the source
code.
Diffstat (limited to 'news/leafnode/patches')
-rw-r--r-- | news/leafnode/patches/patch-aa | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/news/leafnode/patches/patch-aa b/news/leafnode/patches/patch-aa index baab2ae156e..64e011e51bd 100644 --- a/news/leafnode/patches/patch-aa +++ b/news/leafnode/patches/patch-aa @@ -1,58 +1,58 @@ -$NetBSD: patch-aa,v 1.3 2004/01/11 16:45:51 cjep Exp $ +$NetBSD: patch-aa,v 1.4 2004/05/05 15:25:40 cjep Exp $ ---- Makefile.in.orig 2004-01-07 01:49:26.000000000 +0000 +--- Makefile.in.orig 2004-04-03 17:57:05.000000000 +0100 +++ Makefile.in -@@ -815,14 +815,14 @@ uninstall-man8: - rm -f $(DESTDIR)$(man8dir)/$$inst; \ +@@ -822,14 +822,14 @@ uninstall-man8: + rm -f "$(DESTDIR)$(man8dir)/$$inst"; \ done install-sysconfDATA: $(sysconf_DATA) - @$(NORMAL_INSTALL) -- $(mkdir_p) $(DESTDIR)$(sysconfdir) +- test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)" - @list='$(sysconf_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ -- echo " $(sysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(sysconfdir)/$$f"; \ -- $(sysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(sysconfdir)/$$f; \ +- echo " $(sysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sysconfdir)/$$f'"; \ +- $(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sysconfdir)/$$f"; \ - done +# @$(NORMAL_INSTALL) -+# $(mkdir_p) $(DESTDIR)$(sysconfdir) ++# test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)" +# @list='$(sysconf_DATA)'; for p in $$list; do \ +# if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +# f="`echo $$p | sed -e 's|^.*/||'`"; \ -+# echo " $(sysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(sysconfdir)/$$f"; \ -+# $(sysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(sysconfdir)/$$f; \ ++# echo " $(sysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sysconfdir)/$$f'"; \ ++# $(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sysconfdir)/$$f"; \ +# done uninstall-sysconfDATA: @$(NORMAL_UNINSTALL) -@@ -1343,18 +1343,18 @@ rpm: +@@ -1355,18 +1355,18 @@ rpm: rpm -ba leafnode.spec - install-data-hook: quickmkdir amiroot + install-data-hook: amiroot - set -e ; for i in . leaf.node failed.postings interesting.groups \ - out.going message.id temp.files ; do \ - mkdir -p $(DESTDIR)$(SPOOLDIR)/$$i ; \ - if ./amiroot ; then \ -- chown news:news $(DESTDIR)$(SPOOLDIR)/$$i ; \ +- chown @NEWS_USER@:@NEWS_GROUP@ $(DESTDIR)$(SPOOLDIR)/$$i ; \ - chmod 2775 $(DESTDIR)$(SPOOLDIR)/$$i ; fi ; \ - done - d="`dirname $(DESTDIR)@LOCKFILE@`" ; mkdir -p "$${d}" && \ - if ./amiroot ; then \ -- chown news:news "$${d}" ; \ +- chown @NEWS_USER@:@NEWS_GROUP@ "$${d}" ; \ - chmod 2775 "$${d}" ; fi -- ./quickmkdir $(DESTDIR) +- +# set -e ; for i in . leaf.node failed.postings interesting.groups \ +# out.going message.id temp.files ; do \ +# mkdir -p $(DESTDIR)$(SPOOLDIR)/$$i ; \ +# if ./amiroot ; then \ -+# chown news:news $(DESTDIR)$(SPOOLDIR)/$$i ; \ ++# chown @NEWS_USER@:@NEWS_GROUP@ $(DESTDIR)$(SPOOLDIR)/$$i ; \ +# chmod 2775 $(DESTDIR)$(SPOOLDIR)/$$i ; fi ; \ +# done +# d="`dirname $(DESTDIR)@LOCKFILE@`" ; mkdir -p "$${d}" && \ +# if ./amiroot ; then \ -+# chown news:news "$${d}" ; \ ++# chown @NEWS_USER@:@NEWS_GROUP@ "$${d}" ; \ +# chmod 2775 "$${d}" ; fi -+# ./quickmkdir $(DESTDIR) - ++# uninstall-local: rm -rf $(DESTDIR)$(SPOOLDIR) $(DESTDIR)@LOCKFILE@ + |