1
0
forked from ports/opt

fcron: update to 3.1.1

This commit is contained in:
Juergen Daubert 2013-01-07 18:02:42 +01:00
parent 2ff821b36d
commit 8e12ec4a0b
3 changed files with 9 additions and 6 deletions

View File

@ -24,4 +24,4 @@ drwxr-xr-x root/root usr/sbin/
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/spool/
drwxrwx--- fcron/fcron var/spool/fcron/
-rw------- root/root var/spool/fcron/systab.orig
-rw------- root/fcron var/spool/fcron/systab.orig

View File

@ -1,3 +1,3 @@
e11816b7a028e356626e4ccc359b0c95 fcron
69ebcb41921e2a282f41ebecb3a27053 fcron-3.0.6.src.tar.gz
230b91f308e6012957a3a71a94f03838 fcron-3.1.1.src.tar.gz
0153ce1b5ac57ab970abafbde26a9b62 systab.orig

View File

@ -1,11 +1,12 @@
# Description: Enhanced periodical command scheduler like cron
# URL: http://fcron.free.fr
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: readline
name=fcron
version=3.0.6
version=3.1.1
release=1
source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz \
source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz
fcron systab.orig)
build () {
@ -19,14 +20,16 @@ build () {
--with-boot-install=no \
--with-username=fcron \
--with-groupname=fcron \
--with-db2man=no \
--with-dsssl-dir=no \
--with-pam=no \
--with-sendmail=/usr/sbin/sendmail
make
make -j1 DESTDIR=$PKG install
make DESTDIR=$PKG install
rm -r $PKG/{usr/{share,man/{fr,man3}},var/run}
install -D -m 755 $SRC/fcron $PKG/etc/rc.d/fcron
install -m 600 $SRC/systab.orig $PKG/var/spool/fcron
install -m 600 -o root -g fcron $SRC/systab.orig $PKG/var/spool/fcron
}