libevent: 1.3b -> 1.3c

This commit is contained in:
Danny Rawlins 2007-07-31 19:50:45 +10:00
parent 8898e48a2a
commit cd800e4ba5
3 changed files with 15 additions and 7 deletions

View File

@ -1,15 +1,15 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/event_rpcgen.py
-rwxr-xr-x root/root usr/bin/event_rpcgen
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/evdns.h
-rw-r--r-- root/root usr/include/event.h
-rw-r--r-- root/root usr/include/evhttp.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libevent-1.3b.so.1 -> libevent-1.3b.so.1.0.3
-rwxr-xr-x root/root usr/lib/libevent-1.3b.so.1.0.3
lrwxrwxrwx root/root usr/lib/libevent -> libevent-1.3c.1.0.3
lrwxrwxrwx root/root usr/lib/libevent-1.3c.1 -> libevent-1.3c.1.0.3
-rwxr-xr-x root/root usr/lib/libevent-1.3c.1.0.3
-rwxr-xr-x root/root usr/lib/libevent.la
lrwxrwxrwx root/root usr/lib/libevent.so -> libevent-1.3b.so.1.0.3
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/evdns.3.gz

View File

@ -1 +1 @@
7fc864faee87dbe1ed5e34ab8787172c libevent-1.3b.tar.gz
a83802c249a777cbbc47bbaf15aaf641 libevent-1.3c.tar.gz

View File

@ -5,7 +5,7 @@
# Depends on:
name=libevent
version=1.3b
version=1.3c
release=1
source=(http://www.monkey.org/~provos/libevent-$version.tar.gz)
@ -15,9 +15,17 @@ build() {
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-static
--disable-static \
--disable-dependency-tracking \
--with-gnu-ld
make
make DESTDIR=$PKG install
# no .py extensions in /usr/bin its declared on the first line of
# the file
if [ -f $PKG/usr/bin/event_rpcgen.py ]; then
mv $PKG/usr/bin/event_rpcgen.py $PKG/usr/bin/event_rpcgen
fi
}