syslog-ng: initial commit

This commit is contained in:
Thomas Penteker 2008-06-05 22:57:20 +02:00
parent f0d7e115e5
commit 8c8ba0449d
3 changed files with 34 additions and 0 deletions

10
syslog-ng/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/loggen
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/syslog-ng.conf.5.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/syslog-ng.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/syslog-ng

1
syslog-ng/.md5sum Normal file
View File

@ -0,0 +1 @@
2d4232f7167c2b4f48794e4f8f80e863 syslog-ng-2.0.9.tar.gz

23
syslog-ng/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: alternate syslogging daemon
# URL: http://www.balabit.com/network-security/syslog-ng/opensource-logging-system
# Maintainer: Thomas Penteker, tek at serverop dot de
#
# Depends on: eventlog
name=syslog-ng
version=2.0.9
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 \
--enable-dynamic-linking
make && make DESTDIR=$PKG install
rm -rf $PKG/usr/doc
}