View | Details | Raw Unified | Return to bug 231061 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +4 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	hexchat
4
PORTNAME=	hexchat
5
PORTVERSION=	2.14.1
5
PORTVERSION=	2.14.2
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
8
CATEGORIES=	irc gnome ipv6
7
CATEGORIES=	irc gnome ipv6
9
8
10
MAINTAINER=	pkubaj@anongoth.pl
9
MAINTAINER=	pkubaj@anongoth.pl
Lines 78-83 Link Here
78
post-patch:
77
post-patch:
79
	@${REINPLACE_CMD} -e 's|%%CA_BUNDLE%%|${CA_BUNDLE}|' \
78
	@${REINPLACE_CMD} -e 's|%%CA_BUNDLE%%|${CA_BUNDLE}|' \
80
		${WRKSRC}/src/common/server.c
79
		${WRKSRC}/src/common/server.c
80
	@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
81
		-e 's|%%PERL_VER%%|${PERL_VER}|g' \
82
		${WRKSRC}/plugins/perl/meson.build
81
83
82
post-install:
84
post-install:
83
	${LN} -sf ../share/icons/hicolor/48x48/apps/${PORTNAME}.png \
85
	${LN} -sf ../share/icons/hicolor/48x48/apps/${PORTNAME}.png \
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1521168316
1
TIMESTAMP = 1535716329
2
SHA256 (hexchat-hexchat-v2.14.1_GH0.tar.gz) = fcf96f54720f5284b8ac52964e7a5e406893069fc332535afa724f7d7d6a6a81
2
SHA256 (hexchat-hexchat-v2.14.2_GH0.tar.gz) = 4f2c2137020913513ea559f788c41039ca6230764d8158862d5d1ee8785592d9
3
SIZE (hexchat-hexchat-v2.14.1_GH0.tar.gz) = 2748286
3
SIZE (hexchat-hexchat-v2.14.2_GH0.tar.gz) = 2759172
(-)files/patch-meson__options.txt (-3 / +3 lines)
Lines 1-6 Link Here
1
--- meson_options.txt.orig	2018-03-14 02:26:31 UTC
1
--- meson_options.txt.orig	2018-08-29 16:41:08 UTC
2
+++ meson_options.txt
2
+++ meson_options.txt
3
@@ -39,7 +39,7 @@ option('with-exec', type: 'boolean',
3
@@ -42,7 +42,7 @@ option('with-exec', type: 'boolean',
4
 option('with-fishlim', type: 'boolean',
4
 option('with-fishlim', type: 'boolean',
5
   description: 'Fish encryption plugin, requires openssl'
5
   description: 'Fish encryption plugin, requires openssl'
6
 )
6
 )
Lines 8-11 Link Here
8
+option('with-lua', type: 'string',
8
+option('with-lua', type: 'string',
9
   description: 'Lua scripting plugin, value is pkg-config name to use or "false"'
9
   description: 'Lua scripting plugin, value is pkg-config name to use or "false"'
10
 )
10
 )
11
 option('with-perl', type: 'boolean',
11
 option('with-perl', type: 'string', value: 'perl',
(-)files/patch-src__common__server.c (-3 / +3 lines)
Lines 1-9 Link Here
1
--- src/common/server.c.orig	2018-03-14 02:26:31 UTC
1
--- src/common/server.c.orig	2018-08-29 16:41:08 UTC
2
+++ src/common/server.c
2
+++ src/common/server.c
3
@@ -749,7 +749,7 @@ server_connect_success (server *serv)
3
@@ -748,7 +748,7 @@ server_connect_success (server *serv)
4
 
4
 		/* it'll be a memory leak, if connection isn't terminated by
5
 		/* it'll be a memory leak, if connection isn't terminated by
5
 		   server_cleanup() */
6
 		   server_cleanup() */
6
 		serv->ssl = _SSL_socket (serv->ctx, serv->sok);
7
-		if ((err = _SSL_set_verify (serv->ctx, ssl_cb_verify, NULL)))
7
-		if ((err = _SSL_set_verify (serv->ctx, ssl_cb_verify, NULL)))
8
+		if ((err = _SSL_set_verify (serv->ctx, ssl_cb_verify, "%%CA_BUNDLE%%")))
8
+		if ((err = _SSL_set_verify (serv->ctx, ssl_cb_verify, "%%CA_BUNDLE%%")))
9
 		{
9
 		{

Return to bug 231061