diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2012-09-16 18:49:04 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2012-09-16 18:49:04 +0000 |
commit | c1ee1c56641e4cfd51265d041b92ee9ee3ef75b2 (patch) | |
tree | f2b893f6b77c52d05e0968bde402ed6d5bdbc9d2 /net-im/licq-jabber | |
parent | - Update Calligra Suite to 2.5.2. (diff) |
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/
Diffstat (limited to 'net-im/licq-jabber')
-rw-r--r-- | net-im/licq-jabber/Makefile | 40 | ||||
-rw-r--r-- | net-im/licq-jabber/pkg-descr | 6 |
2 files changed, 46 insertions, 0 deletions
diff --git a/net-im/licq-jabber/Makefile b/net-im/licq-jabber/Makefile new file mode 100644 index 000000000000..b512edb43dce --- /dev/null +++ b/net-im/licq-jabber/Makefile @@ -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> diff --git a/net-im/licq-jabber/pkg-descr b/net-im/licq-jabber/pkg-descr new file mode 100644 index 000000000000..dc531a99507a --- /dev/null +++ b/net-im/licq-jabber/pkg-descr @@ -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/ |