eventlog: initial commit

This commit is contained in:
Thomas Penteker 2008-06-05 22:55:08 +02:00
parent c4ce139486
commit f0d7e115e5
3 changed files with 36 additions and 0 deletions

13
eventlog/.footprint Normal file
View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/eventlog/
-rw-r--r-- root/root usr/include/eventlog/evtlog.h
-rw-r--r-- root/root usr/include/eventlog/evtmaps.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libevtlog.a
-rwxr-xr-x root/root usr/lib/libevtlog.la
lrwxrwxrwx root/root usr/lib/libevtlog.so -> libevtlog.so.0.0.0
lrwxrwxrwx root/root usr/lib/libevtlog.so.0 -> libevtlog.so.0.0.0
-rwxr-xr-x root/root usr/lib/libevtlog.so.0.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/eventlog.pc

1
eventlog/.md5sum Normal file
View File

@ -0,0 +1 @@
51ac5bff610194ad57f3d632277bdf49 eventlog-0.2.7.tar.gz

22
eventlog/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: replacement of the simple syslog() API
# URL: http://www.balabit.com/network-security/syslog-ng/opensource-logging-system
# Maintainer: Thomas Penteker, tek at serverop dot de
#
# Depends on:
name=eventlog
version=0.2.7
release=1
source=(http://ftp.uni-erlangen.de/pub/mirrors/gentoo/distfiles/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls \
--mandir=/usr/man
make && make DESTDIR=$PKG install
rm -rf $PKG/usr/doc
}