Index: head/irc/irssi-xmpp/Makefile =================================================================== --- head/irc/irssi-xmpp/Makefile (revision 432649) +++ head/irc/irssi-xmpp/Makefile (revision 432650) @@ -1,33 +1,38 @@ # Created by: Philippe Audeoud # $FreeBSD$ PORTNAME= irssi-xmpp PORTVERSION= 0.53 +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://cybione.org/~irssi-xmpp/files/ MAINTAINER= jadawin@FreeBSD.org COMMENT= Irssi plugin to connect to Jabber network LICENSE= GPLv2 BUILD_DEPENDS= irssi:irc/irssi LIB_DEPENDS= libloudmouth-1.so:net-im/loudmouth RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= pkgconfig +USES= gettext-runtime pkgconfig +USE_GNOME= glib20 USE_LDCONFIG= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" DATADIR= ${PREFIX}/share/irssi DOCSDIR= ${PREFIX}/share/doc/irssi CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC OPTIONS_DEFINE= DOCS post-patch: # Try to unbreak parallel builds (-jX) @${REINPLACE_CMD} -E 's|cd (.+) && (\$${MAKE})|\2 -C \1|' \ ${WRKSRC}/Makefile ${WRKSRC}/src/Makefile + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/irssi/modules/*.so .include Index: head/irc/irssi-xmpp/files/patch-d56d614b89ecc34845e0f5971c545b893c2c359a =================================================================== --- head/irc/irssi-xmpp/files/patch-d56d614b89ecc34845e0f5971c545b893c2c359a (nonexistent) +++ head/irc/irssi-xmpp/files/patch-d56d614b89ecc34845e0f5971c545b893c2c359a (revision 432650) @@ -0,0 +1,41 @@ +From d56d614b89ecc34845e0f5971c545b893c2c359a Mon Sep 17 00:00:00 2001 +From: benaryorg +Date: Fri, 20 Jan 2017 06:31:28 +0100 +Subject: [PATCH] fix #18 - build with irssi 1.0 + +Signed-off-by: benaryorg +--- + src/core/xmpp-servers.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/core/xmpp-servers.c b/src/core/xmpp-servers.c +index 405ecd9..b6d9bd5 100644 +--- src/core/xmpp-servers.c ++++ src/core/xmpp-servers.c +@@ -151,7 +151,7 @@ xmpp_server_init_connect(SERVER_CONNECT_REC *connrec) + server->connect_pid = -1; + + if (server->connrec->port <= 0) +- server->connrec->port = (server->connrec->use_ssl) ? ++ server->connrec->port = (server->connrec->use_tls) ? + LM_CONNECTION_DEFAULT_PORT_SSL : LM_CONNECTION_DEFAULT_PORT; + + if (conn->real_jid == NULL) +@@ -335,7 +335,7 @@ lm_open_cb(LmConnection *connection, gboolean success, + g_free(host); + } else + signal_emit("server connecting", 1, server); +- if (server->connrec->use_ssl) ++ if (server->connrec->use_tls) + signal_emit("xmpp server status", 2, server, + "Using SSL encryption."); + else if (lm_ssl_get_use_starttls(lm_connection_get_ssl(server->lmconn))) +@@ -470,7 +470,7 @@ xmpp_server_connect(XMPP_SERVER_REC *server) + return; + error = NULL; + err_msg = NULL; +- if (server->connrec->use_ssl) { ++ if (server->connrec->use_tls) { + if (!set_ssl(server->lmconn, &error, server, FALSE)) { + err_msg = "Cannot init ssl"; + goto err; Property changes on: head/irc/irssi-xmpp/files/patch-d56d614b89ecc34845e0f5971c545b893c2c359a ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property