diff options
author | mjl <mjl@pkgsrc.org> | 2001-08-22 14:21:46 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2001-08-22 14:21:46 +0000 |
commit | db846983b720a46befad561ad79a157100872e54 (patch) | |
tree | 4fec3cd66403eec358a47234af2d49b39ed447dc /news/slrn/patches | |
parent | 70a89172206c0b72357edd7e4cf4a7dddae20a06 (diff) | |
download | pkgsrc-db846983b720a46befad561ad79a157100872e54.tar.gz |
Update to 0.9.7.2. Plus: clean up Makefile, buildlinkify.
Besides a number of bugfixes, better support for non-Unix
systems and a bit of new documentation, it starts up faster
on some systems and has minor new features, like tab completion
or detection of ``news:'' URLs. It is also more RFC compliant
than ever.
It has a fully customizable group mode and status bars,
highlights URLs, makes use of some common NNTP extensions,
offers better documentation and has lots of minor improvements
and bugfixes over the previous version.
Diffstat (limited to 'news/slrn/patches')
-rw-r--r-- | news/slrn/patches/patch-aa | 88 | ||||
-rw-r--r-- | news/slrn/patches/patch-ac | 28 |
2 files changed, 71 insertions, 45 deletions
diff --git a/news/slrn/patches/patch-aa b/news/slrn/patches/patch-aa index 31e986411f0..7a234dbacd6 100644 --- a/news/slrn/patches/patch-aa +++ b/news/slrn/patches/patch-aa @@ -1,22 +1,76 @@ -$NetBSD: patch-aa,v 1.6 2001/07/26 16:54:43 hubertf Exp $ +$NetBSD: patch-aa,v 1.7 2001/08/22 14:21:48 mjl Exp $ ---- configure.orig Thu Jul 26 18:46:19 2001 -+++ configure Thu Jul 26 18:50:12 2001 -@@ -2058,7 +2058,7 @@ - /usr/local/lib \ - /usr/lib/slang \ - /usr/lib \ -- /usr/pkg/lib" -+ ${PREFIX}/lib" +--- configure.orig Wed Aug 15 00:00:36 2001 ++++ configure Wed Aug 22 16:06:15 2001 +@@ -2219,11 +2219,6 @@ + + + slang_library_dirs="\ +- /usr/local/lib/slang \ +- /usr/local/lib \ +- /usr/lib/slang \ +- /usr/lib \ +- /usr/pkg/lib \ + $ev_libdir" for slang_dir in $slang_library_dirs; do - if test -r $slang_dir/libslang.a || test -r $slang_dir/libslang.so; then -@@ -2126,7 +2126,7 @@ - /usr/local/include \ - /usr/include/slang \ - /usr/include \ -- /usr/pkg/include" -+ ${PREFIX}/include" +@@ -2298,11 +2293,6 @@ + + + slang_include_dirs="\ +- /usr/local/include/slang \ +- /usr/local/include \ +- /usr/include/slang \ +- /usr/include \ +- /usr/pkg/include \ + $ev_includedir" for slang_dir in $slang_include_dirs; do - if test -r "$slang_dir/slang.h"; then +@@ -2394,11 +2384,7 @@ + + + ssl_library_dirs="\ +- /usr/local/ssl/lib \ +- /usr/local/lib \ +- /usr/ssl/lib \ +- /usr/lib \ +- /usr/pkg/lib" ++ $ev_libdir" + + if test "x$ac_ssl_home" != xno && test "x$ac_ssl_home" != xyes ; then + ssl_library_dirs="$ac_ssl_home $ac_ssl_home/lib $ssl_library_dirs" +@@ -2457,11 +2443,7 @@ + + + ssl_include_dirs="\ +- /usr/local/ssl/include \ +- /usr/local/include \ +- /usr/ssl/include \ +- /usr/include \ +- /usr/pkg/include" ++ $ev_includedir" + + if test "x$ac_ssl_home" != xno && test "x$ac_ssl_home" != xyes ; then + ssl_include_dirs="$ac_ssl_home $ac_ssl_home/include $ssl_include_dirs" +@@ -2544,9 +2526,7 @@ + + + uu_library_dirs="\ +- /usr/local/lib \ +- /usr/lib \ +- /usr/pkg/lib" ++ $ev_libdir" + + if test "x$ac_uu_home" != xno && test "x$ac_uu_home" != xyes ; then + uu_library_dirs="$ac_uu_home $ac_uu_home/lib $uu_library_dirs" +@@ -2604,9 +2584,7 @@ + + + uu_include_dirs="\ +- /usr/local/include \ +- /usr/include \ +- /usr/pkg/include" ++ $ev_includedir" + + if test "x$ac_uu_home" != xno && test "x$ac_uu_home" != xyes ; then + uu_include_dirs="$ac_uu_home $ac_uu_home/include $uu_include_dirs" diff --git a/news/slrn/patches/patch-ac b/news/slrn/patches/patch-ac deleted file mode 100644 index 96a853d64af..00000000000 --- a/news/slrn/patches/patch-ac +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-ac,v 1.5 2001/03/30 18:13:26 mjl Exp $ - ---- src/Makefile.in.orig Fri Mar 30 19:58:10 2001 -+++ src/Makefile.in Fri Mar 30 19:58:18 2001 -@@ -68,7 +68,7 @@ - exec_prefix = @exec_prefix@ - - BINDIR = @bindir@ --DOCDIR = $(prefix)/doc/slrn -+DOCDIR = $(prefix)/share/doc/slrn - MANDIR = @mandir@ - MACRODIR = @datadir@/slrn - MKINSDIR = ../autoconf/mkinsdir.sh -@@ -188,14 +188,6 @@ - do \ - echo $(INSTALL_DATA) $$i $(DEST_MANDIR)/man1/; \ - $(INSTALL_DATA) $$i $(DEST_MANDIR)/man1/; \ -- if [ "$$?" != "0" ]; then \ -- exit 1; \ -- fi; \ -- done -- @for i in $(SLRNPULL_DOCS); \ -- do \ -- echo $(INSTALL_DATA) $$i $(DEST_DOCDIR)/slrnpull; \ -- $(INSTALL_DATA) $$i $(DEST_DOCDIR)/slrnpull; \ - if [ "$$?" != "0" ]; then \ - exit 1; \ - fi; \ |