Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Feb 2017 21:30:33 +0000 (UTC)
From:      Tilman Keskinoz <arved@FreeBSD.org>
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
Message-ID:  <201702052130.v15LUXA9085536@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



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