From owner-svn-ports-head@freebsd.org Sun Feb 5 21:30:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F398CD2D72; Sun, 5 Feb 2017 21:30:35 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19E151183; Sun, 5 Feb 2017 21:30:35 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v15LUYi5085543; Sun, 5 Feb 2017 21:30:34 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v15LUXA9085536; Sun, 5 Feb 2017 21:30:33 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201702052130.v15LUXA9085536@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Sun, 5 Feb 2017 21:30:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433459 - in head/net-im: . libmesode libmesode/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Feb 2017 21:30:35 -0000 Author: arved Date: Sun Feb 5 21:30:33 2017 New Revision: 433459 URL: https://svnweb.freebsd.org/changeset/ports/433459 Log: Add libmesode a minimal XMPP library written in C. Added: head/net-im/libmesode/ head/net-im/libmesode/Makefile (contents, props changed) head/net-im/libmesode/distinfo (contents, props changed) head/net-im/libmesode/files/ head/net-im/libmesode/files/patch-configure.ac (contents, props changed) head/net-im/libmesode/pkg-descr (contents, props changed) head/net-im/libmesode/pkg-plist (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Sun Feb 5 21:28:42 2017 (r433458) +++ head/net-im/Makefile Sun Feb 5 21:30:33 2017 (r433459) @@ -58,6 +58,7 @@ SUBDIR += libaccounts-glib SUBDIR += libaccounts-qt5 SUBDIR += libjreen + SUBDIR += libmesode SUBDIR += libnice SUBDIR += libnice-gst010 SUBDIR += libnice-gst1 Added: head/net-im/libmesode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/libmesode/Makefile Sun Feb 5 21:30:33 2017 (r433459) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= libmesode +PORTVERSION= 0.9.1 +CATEGORIES= net-im + +MAINTAINER= arved@FreeBSD.org +COMMENT= Lightweight XMPP library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt + +LIB_DEPENDS= libexpat.so:textproc/expat2 + +USE_GITHUB= yes +GH_ACCOUNT= boothj5 +USES= libtool pkgconfig autoreconf ssl +GNU_CONFIGURE= yes +INSTALL_TARGET=install-strip +CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig +USE_LDCONFIG= yes + +.include Added: head/net-im/libmesode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/libmesode/distinfo Sun Feb 5 21:30:33 2017 (r433459) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486247536 +SHA256 (boothj5-libmesode-0.9.1_GH0.tar.gz) = e693ea1577f0d9e6e58dd8ada9825c359784a225620cbc2fde7295369d295245 +SIZE (boothj5-libmesode-0.9.1_GH0.tar.gz) = 142880 Added: head/net-im/libmesode/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/libmesode/files/patch-configure.ac Sun Feb 5 21:30:33 2017 (r433459) @@ -0,0 +1,26 @@ +--- configure.ac.orig 2016-09-17 18:34:38.000000000 +0200 ++++ configure.ac 2017-02-05 00:01:38.603627000 +0100 +@@ -18,19 +18,19 @@ + [PLATFORM="nix"]) + + PKG_CHECK_MODULES([expat], [expat >= 2.0.0], +- [PC_REQUIRES+=(expat)], ++ [PC_REQUIRES="expat ${PC_REQUIRES}"], + [AC_CHECK_HEADER([expat.h], + [ + expat_LIBS="-lexpat" +- PC_LIBS+=($expat_LIBS) ++ PC_LIBS+=${expat_LIBS} + ], + [AC_MSG_ERROR([expat not found; expat required.])] + ) + ]) + with_parser=expat + PARSER_NAME=expat +-PARSER_CFLAGS=$expat_CFLAGS +-PARSER_LIBS=$expat_LIBS ++PARSER_CFLAGS=${expat_CFLAGS} ++PARSER_LIBS=${expat_LIBS} + + AC_ARG_ENABLE([tls], + [AS_HELP_STRING([--disable-tls], [disable TLS support])]) Added: head/net-im/libmesode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/libmesode/pkg-descr Sun Feb 5 21:30:33 2017 (r433459) @@ -0,0 +1,3 @@ +libmesode is a fork of libstrophe, a minimal XMPP library written in C. + +WWW: https://github.com/boothj5/libmesode Added: head/net-im/libmesode/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/libmesode/pkg-plist Sun Feb 5 21:30:33 2017 (r433459) @@ -0,0 +1,6 @@ +include/mesode.h +lib/libmesode.so.0.0.0 +lib/libmesode.so.0 +lib/libmesode.so +lib/libmesode.a +libdata/pkgconfig/libmesode.pc