Merge pull request #688 from lukasepple/master

New package: loudmouth
This commit is contained in:
Juan RP 2014-12-06 13:16:41 +01:00
commit d936fad5f6
4 changed files with 70 additions and 0 deletions

1
srcpkgs/loudmouth-devel Symbolic link
View File

@ -0,0 +1 @@
loudmouth

View File

@ -0,0 +1,23 @@
Description: use pkg-config to detect gnutls
Debian: http://bugs.debian.org/529835
Origin: http://groups.google.com/group/loudmouth-dev/browse_thread/thread/3f78255837048daf#
--- configure.ac 2009-08-16 20:29:36.000000000 +0200
+++ configure.ac 2009-08-16 20:30:43.000000000 +0200
@@ -146,10 +146,12 @@ AC_ARG_WITH(openssl-libs,
enable_ssl=no
if test "x$ac_ssl" = "xgnutls"; then
dnl Look for GnuTLS
- AM_PATH_LM_LIBGNUTLS($GNUTLS_REQUIRED, have_libgnutls=yes, have_libgnutls=no)
- if test "x$have_libgnutls" = "xyes"; then
- CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
- LIBS="$LIBS $LIBGNUTLS_LIBS"
+ PKG_CHECK_MODULES(GNUTLS, gnutls >= $GNUTLS_REQUIRED, have_gnutls=yes, have_gnutls=no)
+ if test "x$have_gnutls" = "xyes"; then
+ AC_SUBST(ASYNCNS_CFLAGS)
+ AC_SUBST(ASYNCNS_LIBS)
+ CFLAGS="$CFLAGS $GNUTLS_CFLAGS"
+ LIBS="$LIBS $GNUTLS_LIBS"
AC_DEFINE(HAVE_GNUTLS, 1, [whether to use GnuTSL support.])
enable_ssl=GnuTLS
else

View File

@ -0,0 +1,15 @@
Description: Fix build failure with glib 2.32 where including individual glib headers is no longer allowed.
Author: Michael Biebl <biebl@debian.org>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665576
--- loudmouth/lm-error.c 2008-10-29 21:48:15.000000000 +0100
+++ loudmouth/lm-error.c 2012-03-26 00:24:19.518939657 +0200
@@ -19,7 +19,7 @@
*/
#include <config.h>
-#include <glib/gerror.h>
+#include <glib.h>
#include "lm-error.h"
/**

View File

@ -0,0 +1,31 @@
# template file for 'loudmouth'
pkgname="loudmouth"
version="1.4.3"
revision=1
build_style=gnu-configure
short_desc="A lightweight Jabber client library written in C/Glib"
maintainer="Lukas Epple <sternenseemann@lukasepple.de>"
license="LGPL-2"
homepage="https://groups.google.com/forum/#!forum/loudmouth-dev"
distfiles="$GNOME_SITE/loudmouth/${version%.*}/loudmouth-${version}.tar.bz2"
checksum="95a93f5d009b71ea8193d994aa11f311bc330a3efe1b7cd74dc48f11c7f929e3"
makedepends="gnutls-devel"
hostmakedepends="pkg-config automake libtool gnutls-tools glib-devel gtk-doc"
pre_configure() {
autoreconf -fi
}
loudmouth-devel_package() {
depends+="loudmouth>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/lib/pkgconfig/
vmove usr/share/gtk-doc
}
}