On Wed, Nov 02, 2005 at 08:00:10PM +0100, Aleksander Piotrowski wrote:
> Alf Schlichting <[EMAIL PROTECTED]> wrote:
> 
> > /usr/ports/www/snownews dumped core recently.
>
> Maybe just version that we've in ports tree is broken? PLease upgrade
> this port and we'll see if this fixes your problem ....

Update from 1.5.4 to 1.5.7 (current - tested on i386, amd64, macppc)
attached, Changelog mentiones a few bugfixes. Can you try and reproduce
the crash with this version.

David

Index: Makefile
===================================================================
RCS file: /cvs/ports/www/snownews/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- Makefile    11 Dec 2004 13:29:22 -0000      1.9
+++ Makefile    2 Nov 2005 23:27:11 -0000
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.9 2004/12/11 13:29:22 alek Exp $
 
 COMMENT=       "text mode rss newsreader"
-DISTNAME=      snownews-1.5.4
+DISTNAME=      snownews-1.5.7
 CATEGORIES=    www
 MASTER_SITES=  ${HOMEPAGE}download/
 
@@ -24,9 +24,11 @@
 MAKE_ENV+=     EXTRA_LDFLAGS="-lintl -liconv" INSTALL=install \
        EXTRA_CFLAGS="-DSTATIC_CONST_ICONV -I${LOCALBASE}/include ${CFLAGS}"
 
+FAKE_FLAGS=    DESTDIR=
+
 post-install:
        ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/snownews
-       ${INSTALL_DATA} ${WRKSRC}/README{,.colors,.de} \
+       ${INSTALL_DATA} ${WRKSRC}/README{,.patching,.de} \
                ${PREFIX}/share/doc/snownews
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/snownews/distinfo,v
retrieving revision 1.8
diff -u -r1.8 distinfo
--- distinfo    5 Jan 2005 17:39:02 -0000       1.8
+++ distinfo    2 Nov 2005 23:27:11 -0000
@@ -1,4 +1,4 @@
-MD5 (snownews-1.5.4.tar.gz) = 1165207017bbda339b6091946289b984
-RMD160 (snownews-1.5.4.tar.gz) = f7d3b75f0cc864c5c936f68bdb2f9910cfefc012
-SHA1 (snownews-1.5.4.tar.gz) = b601a87c6ed8cbc1398e5e16aa36f3598256ad71
-SIZE (snownews-1.5.4.tar.gz) = 132028
+MD5 (snownews-1.5.7.tar.gz) = 75ffa004e755a233f49b1cdfcd9e3d85
+RMD160 (snownews-1.5.7.tar.gz) = 5aa839bb92a8ee51b2b1fda74ddf22279665061b
+SHA1 (snownews-1.5.7.tar.gz) = d732c056d8c193339cae4c07dfaf0093607c90c0
+SIZE (snownews-1.5.7.tar.gz) = 161504
Index: patches/patch-Makefile
===================================================================
RCS file: /cvs/ports/www/snownews/patches/patch-Makefile,v
retrieving revision 1.7
diff -u -r1.7 patch-Makefile
--- patches/patch-Makefile      13 Oct 2004 03:58:42 -0000      1.7
+++ patches/patch-Makefile      2 Nov 2005 23:27:11 -0000
@@ -22,11 +22,11 @@
        done
  
 @@ -60,7 +60,7 @@ install-bin: snownews
-       if [ ! -d "$(PREFIX)/bin" ]; then \
-               mkdir -p $(PREFIX)/bin; \
+       if [ ! -d "$(DESTDIR)$(PREFIX)/bin" ]; then \
+               mkdir -p $(DESTDIR)$(PREFIX)/bin; \
        fi
--      $(INSTALL) -s snownews $(PREFIX)/bin
-+      $(INSTALL) snownews $(PREFIX)/bin
-       $(INSTALL) opml2snow $(PREFIX)/bin
+-      $(INSTALL) -s snownews $(DESTDIR)$(PREFIX)/bin
++      $(INSTALL) snownews $(DESTDIR)$(PREFIX)/bin
+       $(INSTALL) opml2snow $(DESTDIR)$(PREFIX)/bin
  
  install-locales: locales
Index: patches/patch-platform_settings
===================================================================
RCS file: /cvs/ports/www/snownews/patches/patch-platform_settings,v
retrieving revision 1.1
diff -u -r1.1 patch-platform_settings
--- patches/patch-platform_settings     13 Oct 2004 03:58:42 -0000      1.1
+++ patches/patch-platform_settings     2 Nov 2005 23:27:11 -0000
@@ -3,5 +3,5 @@
 +++ platform_settings  Tue Oct 12 22:27:01 2004
 @@ -1,3 +1,2 @@
 -PREFIX=  /usr/local
- CFLAGS=  -Wall -g -DLOCALEPATH="\"$(LOCALEPATH)\"" -DOS=\"$(shell uname)\" 
`xml2-config --cflags` $(EXTRA_CFLAGS) 
- LDFLAGS= -lncurses `xml2-config --libs` $(EXTRA_LDFLAGS) 
+ CFLAGS=  -Wall -Wno-format-y2k -O2 -DLOCALEPATH="\"$(LOCALEPATH)\"" 
-DOS=\"$(shell uname)\" `xml2-config --cflags` $(EXTRA_CFLAGS)  
-DSTATIC_CONST_ICONV -I/usr/local/include
+ LDFLAGS= -lncurses `xml2-config --libs` $(EXTRA_LDFLAGS)  -lintl -liconv
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/www/snownews/pkg/PLIST,v
retrieving revision 1.7
diff -u -r1.7 PLIST
--- pkg/PLIST   13 Oct 2004 03:58:42 -0000      1.7
+++ pkg/PLIST   2 Nov 2005 23:27:11 -0000
@@ -1,6 +1,8 @@
 @comment $OpenBSD: PLIST,v 1.7 2004/10/13 03:58:42 jolan Exp $
 @comment bin/opml2snow
[EMAIL PROTECTED] bin/snow2opml
 bin/snownews
+bin/snowsync
 man/de/
 man/de/man1/
 @man man/de/man1/snownews.1
@@ -10,7 +12,7 @@
 man/it/
 man/it/man1/
 @man man/it/man1/snownews.1
[EMAIL PROTECTED] man/man1/opml2snow.1
[EMAIL PROTECTED] @man man/man1/opml2snow.1
 @man man/man1/snownews.1
 man/nl/
 man/nl/man1/
@@ -20,14 +22,17 @@
 @man man/ru_RU.KOI8-R/man1/snownews.1
 share/doc/snownews/
 share/doc/snownews/README
-share/doc/snownews/README.colors
 share/doc/snownews/README.de
+share/doc/snownews/README.patching
 share/locale/de/LC_MESSAGES/snownews.mo
 share/locale/es/LC_MESSAGES/snownews.mo
 share/locale/fr/LC_MESSAGES/snownews.mo
 share/locale/it/LC_MESSAGES/snownews.mo
+share/locale/ja/LC_MESSAGES/snownews.mo
 share/locale/nl/LC_MESSAGES/snownews.mo
+share/locale/pl/LC_MESSAGES/snownews.mo
 share/locale/pt_BR/LC_MESSAGES/snownews.mo
 share/locale/ru/LC_MESSAGES/snownews.mo
 share/locale/sl/LC_MESSAGES/snownews.mo
+share/locale/zh_CN/LC_MESSAGES/snownews.mo
 share/locale/zh_TW/LC_MESSAGES/snownews.mo

Reply via email to