vp-build/templates/sysklogd/template
Juan RP 84222395b8 Provide some vars for use in template's targets.
These new vars are DESTDIR (by default XBPS_DESTDIR/pkgname-version),
SRCPKGDESTDIR (XBPS_DESTDIR/sourcepkg-version) and FILESDIR
(XBPS_TEMPLATESDIR/pkgname/files).

This simplifies packages that used them.

--HG--
extra : convert_revision : 287ea7128cb5df19870ca7aff0a3b8f99a11d63a
2009-03-11 06:31:56 +01:00

45 lines
1.6 KiB
Plaintext

# Template file for 'sysklogd'
pkgname=sysklogd
version=1.5
distfiles="
http://www.infodrom.org/projects/sysklogd/download/$pkgname-$version.tar.gz"
build_style=gnu_makefile
make_install_target="prefix=$XBPS_DESTDIR/$pkgname-$version install"
short_desc="Kernel and system logging daemons"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=6169b8e91d29288e90404f01462b69e7f2afb1161aa419826fe4736c7f9eb773
long_desc="
This package implements two system log daemons. The syslogd daemon is an
enhanced version of the standard Berkeley utility program. This daemon is
responsible for providing logging of messages received from programs and
facilities on the local host as well as from remote hosts.
The klogd daemon listens to kernel message sources and is responsible for
prioritizing and processing operating system messages. The klogd daemon can
run as a client of syslogd or optionally as a standalone program.
Klogd can now be used to decode EIP addresses if it can determine a
System.map file."
conf_files="/etc/syslog.conf"
Add_dependency full glibc
post_install()
{
# Create a default syslog.conf.
install -d ${DESTDIR}/etc/rc.d
( \
echo "auth,authpriv.* -/var/log/auth.log"; \
echo "*.*;auth,authpriv.none -/var/log/sys.log"; \
echo "daemon.* -/var/log/daemon.log"; \
echo "kern.* -/var/log/kern.log"; \
echo "mail.* -/var/log/mail.log"; \
echo "user.* -/var/log/user.log"; \
echo "*.emerg *"; \
) > $DESTDIR/etc/syslog.conf
chmod 644 $DESTDIR/etc/syslog.conf
# Install the rc.d scripts.
install -m755 ${FILESDIR}/* ${DESTDIR}/etc/rc.d
}