libraries/libevent: Updated for version 1.3e

This commit is contained in:
Erik Hanson 2010-05-11 19:45:12 +02:00 committed by David Somero
parent bfaf3362c8
commit 0477209d06
4 changed files with 21 additions and 15 deletions

View file

@ -2,4 +2,3 @@ The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.

View file

@ -2,13 +2,13 @@
# Slackware build script for libevent
# Written by Erik Hanson erik@slackbuilds.org
# Modified by the SlackBuilds.org project
PRGNAM=libevent
VERSION=1.2a
VERSION=1.3e
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@ -34,18 +34,17 @@ CFLAGS="$SLKCFLAGS" \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
--enable-static=no \
|| exit 1
make || exit 1
make install-strip DESTDIR=$PKG || exit 1
if [ -d $PKG/usr/man ]; then
( 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
)
fi
( cd $PKG/usr/man || exit
find . -type f -exec gzip -9 {} \;
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README sample $PKG/usr/doc/$PRGNAM-$VERSION

View file

@ -1,8 +1,8 @@
PRGNAM="libevent"
VERSION="1.2a"
VERSION="1.3e"
HOMEPAGE="http://www.monkey.org/~provos/libevent/"
DOWNLOAD="http://www.monkey.org/~provos/libevent-1.2a.tar.gz"
MD5SUM="bb0b731b0c1bfa7267b8cd6192982d68"
DOWNLOAD="http://www.monkey.org/~provos/libevent-1.3e.tar.gz"
MD5SUM="8553ad0f8a35d8d96ae0c69c387e06d3"
MAINTAINER="Erik Hanson"
EMAIL="erik@slackbuilds.org"
APPROVED="rworkman"
APPROVED="David Somero"

View file

@ -1,4 +1,12 @@
libevent: libevent - an event notification library
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler-----------------------------------------------------|
libevent: libevent (event notification library)
libevent:
libevent: The libevent API provides a mechanism to execute a callback function
libevent: when a specific event occurs on a file descriptor or after a timeout