diff options
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/loudmouth/loudmouth-1.4.3-gnutls28.patch | 15 | ||||
-rw-r--r-- | libraries/loudmouth/loudmouth.SlackBuild | 17 | ||||
-rw-r--r-- | libraries/loudmouth/loudmouth.info | 6 |
3 files changed, 32 insertions, 6 deletions
diff --git a/libraries/loudmouth/loudmouth-1.4.3-gnutls28.patch b/libraries/loudmouth/loudmouth-1.4.3-gnutls28.patch new file mode 100644 index 0000000000..a538533db0 --- /dev/null +++ b/libraries/loudmouth/loudmouth-1.4.3-gnutls28.patch @@ -0,0 +1,15 @@ +# Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=272027 +# Patch from mandriva +--- a/configure.ac 2009-05-30 17:59:03.000000000 +0200 ++++ b/configure.ac 2009-05-30 18:02:24.000000000 +0200 +@@ -146,8 +146,9 @@ + 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) ++ PKG_CHECK_EXISTS([gnutls >= $GNUTLS_REQUIRED], have_libgnutls=yes, have_libgnutls=no) + if test "x$have_libgnutls" = "xyes"; then ++ PKG_CHECK_MODULES(LIBGNUTLS, [gnutls >= $GNUTLS_REQUIRED]) + CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS" + LIBS="$LIBS $LIBGNUTLS_LIBS" + AC_DEFINE(HAVE_GNUTLS, 1, [whether to use GnuTSL support.]) diff --git a/libraries/loudmouth/loudmouth.SlackBuild b/libraries/loudmouth/loudmouth.SlackBuild index 646cff919b..d30247301b 100644 --- a/libraries/loudmouth/loudmouth.SlackBuild +++ b/libraries/loudmouth/loudmouth.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for loudmouth -# Copyright 2008 Heinz Wiesinger <pprkut@liwjatan.at> +# Copyright 2008-2009 Heinz Wiesinger, Amsterdam, The Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ PRGNAM=loudmouth VERSION=1.4.3 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -35,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -56,10 +59,16 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +#fix finding gnutls-2.8 +patch -p1 -i $CWD/loudmouth-1.4.3-gnutls28.patch + +autoreconf -vif + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ -./configure \ + ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-static \ @@ -79,4 +88,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/loudmouth/loudmouth.info b/libraries/loudmouth/loudmouth.info index 3ab3648d51..0e5aeac281 100644 --- a/libraries/loudmouth/loudmouth.info +++ b/libraries/loudmouth/loudmouth.info @@ -1,8 +1,10 @@ PRGNAM="loudmouth" VERSION="1.4.3" HOMEPAGE="http://www.loudmouth-project.org/" -DOWNLOAD="http://ftp.imendio.com/pub/imendio/loudmouth/src/loudmouth-1.4.3.tar.bz2" +DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/loudmouth/1.4/loudmouth-1.4.3.tar.bz2" +DOWNLOAD_x86_64="" MD5SUM="55339ca42494690c3942ee1465a96937" -MAINTAINER="ppr:kut" +MD5SUM_x86_64="" +MAINTAINER="Heinz Wiesinger" EMAIL="pprkut@liwjatan.at" APPROVED="dsomero" |