svn commit: r304375 - in head/net-im: . licq-jabber
Dirk Meyer
dinoex at FreeBSD.org
Sun Sep 16 18:49:05 UTC 2012
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 at dinoex.sub.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= jabber
+PORTVERSION= ${CONSOLE_LICQ_VER}
+CATEGORIES= net-im
+
+MAINTAINER= dinoex at 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/
More information about the svn-ports-all
mailing list