View | Details | Raw Unified | Return to bug 145363
Collapse All | Expand All

(-)/usr/ports/irc/irssi/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	irssi
8
PORTNAME=	irssi
9
PORTVERSION=	0.8.14
9
PORTVERSION=	0.8.15
10
PORTREVISION?=	1
11
CATEGORIES?=	irc
10
CATEGORIES?=	irc
12
MASTER_SITES=	http://mirror.irssi.org/
11
MASTER_SITES=	http://mirror.irssi.org/
13
12
(-)/usr/ports/irc/irssi/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (irssi-0.8.14.tar.bz2) = 00efe7638dd596d5930dfa2aeae87b3a
1
MD5 (irssi-0.8.15.tar.bz2) = 1dcb3f511b88df94b0c996f36668c7da
2
SHA256 (irssi-0.8.14.tar.bz2) = 63ea70eb1ce6fb3c995e984f919dcd18882e916478779dd899de9385ef8fdf28
2
SHA256 (irssi-0.8.15.tar.bz2) = c12d16fb605103d7c256ddce44012dc396af57f3771e086d0387c195a052a0a6
3
SIZE (irssi-0.8.14.tar.bz2) = 944708
3
SIZE (irssi-0.8.15.tar.bz2) = 948847
(-)/usr/ports/irc/irssi/files/patch-core-network_openssl_c (+10 lines)
Line 0 Link Here
1
--- src/core/network-openssl.c.orig	2010-04-03 17:32:04.000000000 +0000
2
+++ src/core/network-openssl.c	2010-04-03 17:37:34.000000000 +0000
3
@@ -406,6 +406,7 @@
4
 		g_error("Could not allocate memory for SSL context");
5
 		return NULL;
6
 	}
7
+	SSL_CTX_set_options(ctx, SSL_OP_ALL | SSL_OP_NO_SSLv2);
8
 
9
 	if (mycert && *mycert) {
10
 		char *scert = NULL, *spkey = NULL;
(-)/usr/ports/irc/irssi/files/patch-docs_Makefile.in (-11 lines)
Lines 1-11 Link Here
1
--- docs/Makefile.in.orig	2009-04-01 05:02:52.000000000 +0800
2
+++ docs/Makefile.in	2009-04-02 09:29:16.000000000 +0800
3
@@ -51,7 +51,7 @@
4
 	install-pdf-recursive install-ps-recursive install-recursive \
5
 	installcheck-recursive installdirs-recursive pdf-recursive \
6
 	ps-recursive uninstall-recursive
7
-man1dir = $(mandir)/man1
8
+man1dir = $(prefix)/man/man1
9
 am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)"
10
 NROFF = nroff
11
 MANS = $(man_MANS)
(-)/usr/ports/irc/irssi/files/patch-openssl.c (-29 lines)
Lines 1-29 Link Here
1
--- src/core/network-openssl.c.orig	2009-08-17 09:27:52.000000000 +0800
2
+++ src/core/network-openssl.c	2009-08-17 09:28:14.000000000 +0800
3
@@ -230,7 +230,7 @@
4
 	SSL_library_init();
5
 	SSL_load_error_strings();
6
 
7
-	ssl_ctx = SSL_CTX_new(SSLv23_client_method());
8
+	ssl_ctx = SSL_CTX_new(SSLv3_client_method());
9
 	if(!ssl_ctx)
10
 	{
11
 		g_error("Initialization of the SSL library failed");
12
@@ -259,7 +259,7 @@
13
 
14
 	if (mycert && *mycert) {
15
 		char *scert = NULL, *spkey = NULL;
16
-		if ((ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) {
17
+		if ((ctx = SSL_CTX_new(SSLv3_client_method())) == NULL) {
18
 			g_error("Could not allocate memory for SSL context");
19
 			return NULL;
20
 		}
21
@@ -279,7 +279,7 @@
22
 	if ((cafile && *cafile) || (capath && *capath)) {
23
 		char *scafile = NULL;
24
 		char *scapath = NULL;
25
-		if (! ctx && (ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) {
26
+		if (! ctx && (ctx = SSL_CTX_new(SSLv3_client_method())) == NULL) {
27
 			g_error("Could not allocate memory for SSL context");
28
 			return NULL;
29
 		}

Return to bug 145363