From owner-svn-ports-all@FreeBSD.ORG Sun Sep 16 18:49:05 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F173106564A; Sun, 16 Sep 2012 18:49:05 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 188C78FC14; Sun, 16 Sep 2012 18:49:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8GIn4d0055111; Sun, 16 Sep 2012 18:49:04 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8GIn4KB055107; Sun, 16 Sep 2012 18:49:04 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201209161849.q8GIn4KB055107@svn.freebsd.org> From: Dirk Meyer Date: Sun, 16 Sep 2012 18:49:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304375 - in head/net-im: . licq-jabber X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Sep 2012 18:49:05 -0000 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 + +.include "${PORTSDIR}/${LICQ_PORT}/Makefile.inc" + +.if !defined(NOPORTDOCS) +post-install: + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ +.endif + +.include 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/