CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
openssl: adapted to 64b
[crossrootfs.git] / sysklogd / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Kernel and system logging daemons
2# URL: http://www.infodrom.org/projects/sysklogd/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on:
6
7name=sysklogd
270cfc33
VM
8version=1.5.1
9release=3
10source=(http://www.infodrom.org/projects/$name/download/$name-$version.tar.gz \
6dca1d21
JB
11 rotatelog syslog syslog.conf sysklogd)
12
13build() {
14 cd $name-$version
15
16 # don't try to fclose(NULL)
17 sed -i -e '192d' ksym_mod.c
18
19 mkdir -p $PKG/usr/sbin \
20 $PKG/etc/{cron/weekly,rc.d} \
21 $PKG/var/log \
270cfc33 22 $PKG/usr/share/man/{man5,man8}
6dca1d21
JB
23
24 # no strip sysklogd and klogd binaries
25 sed -e 's|${INSTALL} -m 500 -s|${INSTALL} -m 500|' -i Makefile
26
27 make RPM_OPT_FLAGS="$CFLAGS" CC="$CC" all
270cfc33 28 make BINDIR=$PKG/usr/sbin MANDIR=$PKG/usr/share/man install
6dca1d21
JB
29
30 install -m 755 $SRC/rotatelog $PKG/usr/sbin
31 install -m 755 $SRC/syslog $PKG/etc/cron/weekly
32 install -m 644 $SRC/syslog.conf $PKG/etc
33 install -m 755 $SRC/sysklogd $PKG/etc/rc.d
34
35 chmod -R +w $PKG
a732b233
VM
36 touch $PKG/var/log/{messages,auth,mail,cron,kernel,debug}
37 chmod 640 $PKG/var/log/{messages,auth,mail,cron,kernel,debug}
6dca1d21 38}