bugfix release snownews-1.5.12. remove hacks since it now uses
openssl instead of the homegrown md5 code ok simon@
This commit is contained in:
parent
6dca00bf53
commit
5ac8851ec7
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.23 2009/04/25 20:08:44 martynas Exp $
|
||||
# $OpenBSD: Makefile,v 1.24 2009/09/18 20:51:35 martynas Exp $
|
||||
|
||||
COMMENT= text mode rss newsreader
|
||||
DISTNAME= snownews-1.5.11
|
||||
DISTNAME= snownews-1.5.12
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= ${HOMEPAGE}download/
|
||||
|
||||
@ -14,7 +14,7 @@ PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
WANTLIB= c m ncurses z
|
||||
WANTLIB= c crypto m ncurses z
|
||||
|
||||
NO_REGRESS= Yes
|
||||
USE_GMAKE= Yes
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (snownews-1.5.11.tar.gz) = VQ4y2cSplgiED7CWAPvnTQ==
|
||||
RMD160 (snownews-1.5.11.tar.gz) = zLHgIa0l7y9PQg/kTxyBgz+XrYg=
|
||||
SHA1 (snownews-1.5.11.tar.gz) = ZO0cZI7VDK2ilLxQPhAElqfdnwk=
|
||||
SHA256 (snownews-1.5.11.tar.gz) = A6fUOCI55k8EFWeIINYTUBp6+Ixu9zp2c8O3bEwgPnw=
|
||||
SIZE (snownews-1.5.11.tar.gz) = 172814
|
||||
MD5 (snownews-1.5.12.tar.gz) = gNqJQ/xaqWVxkkrsAIfUwA==
|
||||
RMD160 (snownews-1.5.12.tar.gz) = 2+nGuI53zje7I+TT3cjWP4vWYVE=
|
||||
SHA1 (snownews-1.5.12.tar.gz) = s63arCXCwJOqXmC4uJ5Q59dFC88=
|
||||
SHA256 (snownews-1.5.12.tar.gz) = Jt2W6TRdnLwcDJRwQXCA3Qw+sx5+qUT3jzMC1wYOy5A=
|
||||
SIZE (snownews-1.5.12.tar.gz) = 167944
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-Makefile,v 1.12 2008/01/14 22:40:39 martynas Exp $
|
||||
--- Makefile.orig Tue Jan 8 11:50:29 2008
|
||||
+++ Makefile Sat Jan 12 22:51:03 2008
|
||||
@@ -2,14 +2,14 @@ CC= gcc
|
||||
$OpenBSD: patch-Makefile,v 1.13 2009/09/18 20:51:35 martynas Exp $
|
||||
--- Makefile.orig Thu Sep 17 09:44:27 2009
|
||||
+++ Makefile Thu Sep 17 11:10:11 2009
|
||||
@@ -2,7 +2,7 @@ CC= gcc
|
||||
MAKE= make
|
||||
INSTALL= install
|
||||
LOCALEPATH= $(PREFIX)/share/locale
|
||||
@ -10,11 +10,3 @@ $OpenBSD: patch-Makefile,v 1.12 2008/01/14 22:40:39 martynas Exp $
|
||||
|
||||
### Compiler/linker flags ###
|
||||
### Generated via configure ###
|
||||
include platform_settings
|
||||
|
||||
### Object files ###
|
||||
-OBJFILES= main.o netio.o interface.o xmlparse.o updatecheck.o conversions.o dialog.o ui-support.o categories.o about.o cookies.o setup.o net-support.o digcalc.o md5.o filters.o io-internal.o os-support.o zlib_interface.o support.o
|
||||
+OBJFILES= main.o netio.o interface.o xmlparse.o updatecheck.o conversions.o dialog.o ui-support.o categories.o about.o cookies.o setup.o net-support.o digcalc.o filters.o io-internal.o os-support.o zlib_interface.o support.o
|
||||
|
||||
VERSION= `grep VERSION version.h | sed s/\"//g | sed s/\#define\ VERSION\ //`
|
||||
DISTDIR= snownews-$(VERSION)
|
||||
|
@ -1,12 +1,12 @@
|
||||
$OpenBSD: patch-configure,v 1.2 2008/01/14 22:40:39 martynas Exp $
|
||||
--- configure.orig Tue Jan 8 11:48:59 2008
|
||||
+++ configure Sat Jan 12 21:32:00 2008
|
||||
$OpenBSD: patch-configure,v 1.3 2009/09/18 20:51:35 martynas Exp $
|
||||
--- configure.orig Thu Sep 17 09:44:27 2009
|
||||
+++ configure Thu Sep 17 11:10:45 2009
|
||||
@@ -12,7 +12,7 @@ my $xmlldflags = `xml2-config --libs`;
|
||||
chomp($xmlldflags);
|
||||
|
||||
my $prefix = "/usr/local";
|
||||
-my $cflags = "-Wall -Wno-format-y2k -O2 -DLOCALEPATH=\"\\\"\$(LOCALEPATH)\\\"\" -DOS=\\\"$os\\\" $xmlcflags \$(EXTRA_CFLAGS) ";
|
||||
+my $cflags = "-Wall -Wno-format-y2k -DLOCALEPATH=\"\\\"\$(LOCALEPATH)\\\"\" -DOS=\\\"$os\\\" $xmlcflags \$(EXTRA_CFLAGS) ";
|
||||
my $ldflags = "-lncurses $xmlldflags \$(EXTRA_LDFLAGS) ";
|
||||
my $ldflags = "-lncurses -lcrypto $xmlldflags \$(EXTRA_LDFLAGS) ";
|
||||
|
||||
my $use_nls = 1;
|
||||
|
@ -1,20 +0,0 @@
|
||||
$OpenBSD: patch-conversions_c,v 1.9 2009/04/25 20:08:44 martynas Exp $
|
||||
--- conversions.c.orig Thu Mar 19 13:16:44 2009
|
||||
+++ conversions.c Thu Apr 23 15:08:30 2009
|
||||
@@ -31,7 +31,7 @@
|
||||
#include <errno.h>
|
||||
#include <libxml/HTMLparser.h>
|
||||
#include <langinfo.h>
|
||||
-/*#include <md5.h>*/
|
||||
+#include <md5.h>
|
||||
|
||||
#include "os-support.h"
|
||||
|
||||
@@ -51,7 +51,6 @@
|
||||
#include "ui-support.h"
|
||||
#include "setup.h"
|
||||
#include "digcalc.h"
|
||||
-#include "md5.h"
|
||||
#include "io-internal.h"
|
||||
|
||||
extern struct entity *first_entity;
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-digcalc_c,v 1.2 2008/01/14 22:40:39 martynas Exp $
|
||||
--- digcalc.c.orig Tue Jan 8 11:41:02 2008
|
||||
+++ digcalc.c Sat Jan 12 21:30:42 2008
|
||||
@@ -11,8 +11,8 @@
|
||||
* MD5 implementation rather than using RSA's.
|
||||
*/
|
||||
|
||||
-#include "md5.h"
|
||||
-
|
||||
+#include <sys/types.h>
|
||||
+#include <md5.h>
|
||||
#include <string.h>
|
||||
#include "digcalc.h"
|
||||
|
Loading…
Reference in New Issue
Block a user