Update to 1.4.1.
This commit is contained in:
parent
3d3fcd7321
commit
4b880b8aa0
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2003/11/17 00:00:01 jolan Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2003/12/16 07:03:27 jolan Exp $
|
||||
|
||||
COMMENT= "text mode rss newsreader"
|
||||
DISTNAME= snownews-1.3.5
|
||||
DISTNAME= snownews-1.4.1
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= ${HOMEPAGE}download/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (snownews-1.3.5.tar.gz) = cbfee9370000cff6ea41471d7eaac7f2
|
||||
RMD160 (snownews-1.3.5.tar.gz) = 7145e8a5fdef802f7dadb394011a85bec0333b4d
|
||||
SHA1 (snownews-1.3.5.tar.gz) = 05232c7c01d646007c6f091d2214c5c4cdacdb3d
|
||||
MD5 (snownews-1.4.1.tar.gz) = 33b13c39d6a09df9a6137c37b0e02f56
|
||||
RMD160 (snownews-1.4.1.tar.gz) = 6f57533a69686f659970ddac4a4900b993a817cb
|
||||
SHA1 (snownews-1.4.1.tar.gz) = ea58fdb1a42bde371fe9a9a6f628d305c72ecb0f
|
||||
|
@ -1,12 +1,12 @@
|
||||
$OpenBSD: patch-Makefile,v 1.3 2003/11/17 00:00:02 jolan Exp $
|
||||
--- Makefile.orig 2003-11-12 03:39:24.000000000 -0600
|
||||
+++ Makefile 2003-11-16 17:30:45.000000000 -0600
|
||||
$OpenBSD: patch-Makefile,v 1.4 2003/12/16 07:03:27 jolan Exp $
|
||||
--- Makefile.orig 2003-12-07 07:14:40.000000000 -0600
|
||||
+++ Makefile 2003-12-15 23:51:39.000000000 -0600
|
||||
@@ -1,8 +1,8 @@
|
||||
include Makefile.inc
|
||||
|
||||
-LDFLAGS = -lncurses `xml2-config --libs` $(EXTRA_LDFLAGS)
|
||||
+LDFLAGS+= -lncurses `xml2-config --libs` $(EXTRA_LDFLAGS)
|
||||
OBJFILES = main.o netio.o interface.o xmlparse.o updatecheck.o conversions.o dialog.o ui-support.o
|
||||
OBJFILES = main.o netio.o interface.o xmlparse.o updatecheck.o conversions.o dialog.o ui-support.o categories.o
|
||||
-CFLAGS = -Wall -O2 -DLOCALEPATH="\"$(LOCALEPATH)\"" -DOS=\"$(shell uname)\" `xml2-config --cflags` $(EXTRA_CFLAGS)
|
||||
+CFLAGS+= -Wall -DLOCALEPATH="\"$(LOCALEPATH)\"" -DOS=\"$(shell uname)\" `xml2-config --cflags` $(EXTRA_CFLAGS)
|
||||
VERSION = `grep VERSION version.h | sed s/\"//g | sed s/\#define\ VERSION\ //`
|
||||
|
@ -1,6 +1,6 @@
|
||||
$OpenBSD: patch-Makefile_inc,v 1.2 2003/11/05 01:13:53 jolan Exp $
|
||||
--- Makefile.inc.orig 2003-11-02 14:41:22.000000000 -0600
|
||||
+++ Makefile.inc 2003-11-04 18:27:51.000000000 -0600
|
||||
$OpenBSD: patch-Makefile_inc,v 1.3 2003/12/16 07:03:27 jolan Exp $
|
||||
--- Makefile.inc.orig 2003-12-07 07:14:40.000000000 -0600
|
||||
+++ Makefile.inc 2003-12-16 01:01:13.000000000 -0600
|
||||
@@ -1,6 +1,6 @@
|
||||
-CC = gcc
|
||||
-MAKE = make
|
||||
@ -9,5 +9,5 @@ $OpenBSD: patch-Makefile_inc,v 1.2 2003/11/05 01:13:53 jolan Exp $
|
||||
+#MAKE = make
|
||||
+#PREFIX = /usr/local
|
||||
LOCALEPATH = $(PREFIX)/share/locale
|
||||
DISTFILES = AUTHOR COPYING CREDITS Changelog README README.de INSTALL INSTALL.solaris INSTALL.FreeOpenNetBSD TODO opml2snow \
|
||||
DISTFILES = AUTHOR COPYING CREDITS Changelog README README.de README.colors INSTALL INSTALL.solaris INSTALL.FreeOpenNetBSD TODO opml2snow \
|
||||
Makefile Makefile.inc Makefile.solaris \
|
||||
|
@ -1,9 +1,9 @@
|
||||
$OpenBSD: patch-conversions_c,v 1.2 2003/11/05 01:13:53 jolan Exp $
|
||||
--- conversions.c.orig 2003-11-02 14:41:22.000000000 -0600
|
||||
+++ conversions.c 2003-11-04 18:27:51.000000000 -0600
|
||||
@@ -33,7 +33,7 @@
|
||||
#include "config.h"
|
||||
#include "interface.h"
|
||||
$OpenBSD: patch-conversions_c,v 1.3 2003/12/16 07:03:27 jolan Exp $
|
||||
--- conversions.c.orig 2003-12-07 07:14:40.000000000 -0600
|
||||
+++ conversions.c 2003-12-16 01:01:13.000000000 -0600
|
||||
@@ -38,7 +38,7 @@
|
||||
# include "os-support.h"
|
||||
#endif
|
||||
|
||||
-char * iconvert (char * inbuf, char * from, char * to) {
|
||||
+char * iconvert (const char * inbuf, char * from, char * to) {
|
||||
|
@ -1,19 +1,23 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2003/12/15 19:46:16 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2003/12/16 07:03:27 jolan Exp $
|
||||
@comment bin/opml2snow
|
||||
bin/snownews
|
||||
man/de/man1/snownews.1
|
||||
man/fr/man1/snownews.1
|
||||
man/it/man1/snownews.1
|
||||
man/man1/snownews.1
|
||||
man/nl/man1/snownews.1
|
||||
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/nl/LC_MESSAGES/snownews.mo
|
||||
share/locale/sl/LC_MESSAGES/snownews.mo
|
||||
@dirrm share/locale/sl/LC_MESSAGES
|
||||
@dirrm share/locale/sl
|
||||
@dirrm share/locale/nl/LC_MESSAGES
|
||||
@dirrm share/locale/nl
|
||||
@dirrm share/locale/it/LC_MESSAGES
|
||||
@dirrm share/locale/it
|
||||
@dirrm share/locale/fr/LC_MESSAGES
|
||||
@dirrm share/locale/fr
|
||||
@dirrm share/locale/es/LC_MESSAGES
|
||||
@ -23,6 +27,8 @@ share/locale/sl/LC_MESSAGES/snownews.mo
|
||||
@dirrm share/locale
|
||||
@dirrm man/nl/man1
|
||||
@dirrm man/nl
|
||||
@dirrm man/it/man1
|
||||
@dirrm man/it
|
||||
@dirrm man/fr/man1
|
||||
@dirrm man/fr
|
||||
@dirrm man/de/man1
|
||||
|
Loading…
x
Reference in New Issue
Block a user