OpenRC: add logrotate script. Bump revision.

--HG--
extra : convert_revision : e1f45f1ad2a21795e4f53a34b122cf7821a9cead
This commit is contained in:
Juan RP 2009-10-05 18:20:40 +02:00
parent c10199a227
commit 32556af2c6
2 changed files with 9 additions and 3 deletions

View file

@ -0,0 +1,5 @@
/var/log/rc.log {
sharedscripts
copytruncate
missingok
}

View file

@ -1,7 +1,7 @@
# Template file for 'OpenRC'
pkgname=OpenRC
version=0.5.0
revision=2
revision=3
wrksrc=openrc-${version}
patch_files="xbps-locale-service.diff"
distfiles="http://roy.marples.name/downloads/openrc/openrc-$version.tar.bz2"
@ -34,8 +34,7 @@ pre_configure()
# Fix path for kbd stuff.
for f in init.d/consolefont.in conf.d/consolefont; do
sed -i -e "s|/usr/share/consolefonts|/lib/kbd/consolefonts|g" \
${wrksrc}/${f}
sed -i -e "s|/usr/share|/lib/kbd|g" ${wrksrc}/${f}
done
}
@ -43,4 +42,6 @@ post_install()
{
install -D -m755 ${wrksrc}/support/sysvinit/inittab \
${DESTDIR}/etc/inittab
install -D -m644 ${FILESDIR}/$pkgname.logrotate \
${DESTDIR}/etc/logrotate.d/OpenRC
}