Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Sep 2012 18:49:04 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304375 - in head/net-im: . licq-jabber
Message-ID:  <201209161849.q8GIn4KB055107@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dinoex
Date: Sun Sep 16 18:49:04 2012
New Revision: 304375
URL: http://svn.freebsd.org/changeset/ports/304375

Log:
  Adds support for the Jabber (XMPP) protocol to Licq. Still in early
  development, but capable of sending and receiving messages.
  
  LICENSE: GPL2 or later with execption to link with OpenSSL
  
  WWW: http://www.licq.org/

Added:
  head/net-im/licq-jabber/
  head/net-im/licq-jabber/Makefile   (contents, props changed)
  head/net-im/licq-jabber/pkg-descr   (contents, props changed)
Modified:
  head/net-im/Makefile

Modified: head/net-im/Makefile
==============================================================================
--- head/net-im/Makefile	Sun Sep 16 17:31:30 2012	(r304374)
+++ head/net-im/Makefile	Sun Sep 16 18:49:04 2012	(r304375)
@@ -67,6 +67,7 @@
     SUBDIR += libyahoo2
     SUBDIR += licq
     SUBDIR += licq-console
+    SUBDIR += licq-jabber
     SUBDIR += licq-osd
     SUBDIR += licq-qt-gui
     SUBDIR += linpopup

Added: head/net-im/licq-jabber/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/licq-jabber/Makefile	Sun Sep 16 18:49:04 2012	(r304375)
@@ -0,0 +1,40 @@
+# New ports collection makefile for:    licq-jabber
+# Date created:                         27 Nov 2010
+# Whom:                                 dirk.meyer@dinoex.sub.org
+#
+# $FreeBSD$
+#
+
+PORTNAME=	jabber
+PORTVERSION=	${CONSOLE_LICQ_VER}
+CATEGORIES=	net-im
+
+MAINTAINER=	dinoex@FreeBSD.org
+COMMENT=	Jabber (XMPP) plugin for Licq
+
+LIB_DEPENDS=	gloox:${PORTSDIR}/net-im/gloox \
+		boost_regex:${PORTSDIR}/devel/boost-libs
+
+LICENSE=	GPLv2
+
+USE_CMAKE=	yes
+DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
+
+DOCFILES=	README
+PLIST_FILES=	lib/licq/protocol_jabber.so \
+		%%PORTDOCS%%%%DOCSDIR%%/README
+PLIST_DIRS=	%%PORTDOCS%%%%DOCSDIR%%
+
+LICQ_PORT?=	net-im/licq
+
+.include <bsd.port.pre.mk>
+
+.include "${PORTSDIR}/${LICQ_PORT}/Makefile.inc"
+
+.if !defined(NOPORTDOCS)
+post-install:
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
+.endif
+
+.include <bsd.port.post.mk>

Added: head/net-im/licq-jabber/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/licq-jabber/pkg-descr	Sun Sep 16 18:49:04 2012	(r304375)
@@ -0,0 +1,6 @@
+Adds support for the Jabber (XMPP) protocol to Licq. Still in early
+development, but capable of sending and receiving messages.
+
+LICENSE: GPL2 or later with execption to link with OpenSSL
+
+WWW: http://www.licq.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209161849.q8GIn4KB055107>