diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-12-27 22:06:42 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-29 01:08:49 -0600 |
commit | 051ada24554b5ade4cece3c88fa61718a47e726a (patch) | |
tree | adccf9f796edcd030de1cb9339c82949dfa25061 /libraries/wvstreams | |
parent | 48934c2eac31ecf24bdb36ce237a39ac67bc0291 (diff) | |
download | slackbuilds-051ada24554b5ade4cece3c88fa61718a47e726a.tar.gz |
libraries/wvstreams: Updated for version 4.6.1.
This update includes a patch to build against glibc-2.12.x.
I actually did this update, but I shot it over to vbatts
for a lookie before going any further with it... That
said, blame me if there are problems... :-)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/wvstreams')
-rw-r--r-- | libraries/wvstreams/wvstreams-4.6.1-glibc212.patch | 23 | ||||
-rw-r--r-- | libraries/wvstreams/wvstreams.SlackBuild | 14 | ||||
-rw-r--r-- | libraries/wvstreams/wvstreams.info | 6 |
3 files changed, 31 insertions, 12 deletions
diff --git a/libraries/wvstreams/wvstreams-4.6.1-glibc212.patch b/libraries/wvstreams/wvstreams-4.6.1-glibc212.patch new file mode 100644 index 0000000000..473d3e8329 --- /dev/null +++ b/libraries/wvstreams/wvstreams-4.6.1-glibc212.patch @@ -0,0 +1,23 @@ +http://bugs.gentoo.org/333301 + +--- ipstreams/wvunixdgsocket.cc ++++ ipstreams/wvunixdgsocket.cc +@@ -1,5 +1,5 @@ + #include "wvunixdgsocket.h" +-#ifdef MACOS ++#if defined(MACOS) || defined(__GNUC__) + #include <sys/types.h> + #include <sys/stat.h> + #endif +--- streams/wvatomicfile.cc ++++ streams/wvatomicfile.cc +@@ -11,7 +11,8 @@ + #include "wvfileutils.h" + #include "wvstrutils.h" + +-#ifdef MACOS ++#if defined(MACOS) || defined(__GNUC__) ++#include <sys/types.h> + #include <sys/stat.h> + #endif + diff --git a/libraries/wvstreams/wvstreams.SlackBuild b/libraries/wvstreams/wvstreams.SlackBuild index e04ca62c0a..ebe4b85968 100644 --- a/libraries/wvstreams/wvstreams.SlackBuild +++ b/libraries/wvstreams/wvstreams.SlackBuild @@ -5,16 +5,14 @@ # Written by Vincent Batts, vbatts@batts.mine.nu PRGNAM=wvstreams -VERSION=4.6 +VERSION=4.6.1 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -53,9 +51,11 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Fix a build error with glibc-2.12.x +patch -p0 < $CWD/wvstreams-4.6.1-glibc212.patch + # configure doesn't support disabling static libraries # Don't manually remove them either, as wvdial won't build then :) -# * Build without dbus support, since it requires the static dbus lib CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -65,7 +65,6 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --disable-testgui \ - --without-dbus \ --build=$ARCH-slackware-linux make @@ -77,10 +76,7 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ # Let's not clobber the config file mv $PKG/etc/uniconf.conf $PKG/etc/uniconf.conf.new -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ diff --git a/libraries/wvstreams/wvstreams.info b/libraries/wvstreams/wvstreams.info index 1471ad97cc..b15e94e810 100644 --- a/libraries/wvstreams/wvstreams.info +++ b/libraries/wvstreams/wvstreams.info @@ -1,8 +1,8 @@ PRGNAM="wvstreams" -VERSION="4.6" +VERSION="4.6.1" HOMEPAGE="http://alumnit.ca/wiki/index.php?page=WvStreams" -DOWNLOAD="http://wvstreams.googlecode.com/files/wvstreams-4.6.tar.gz" -MD5SUM="4ee8ccfe6dfc29bf952d58fa23626c97" +DOWNLOAD="http://wvstreams.googlecode.com/files/wvstreams-4.6.1.tar.gz" +MD5SUM="2760dac31a43d452a19a3147bfde571c" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Vincent Batts" |