diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/fcron | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/fcron')
-rw-r--r-- | community/fcron/PKGBUILD | 80 | ||||
-rw-r--r-- | community/fcron/fcron.install | 13 | ||||
-rw-r--r-- | community/fcron/systab.orig | 4 |
3 files changed, 97 insertions, 0 deletions
diff --git a/community/fcron/PKGBUILD b/community/fcron/PKGBUILD new file mode 100644 index 000000000..3e60e52d5 --- /dev/null +++ b/community/fcron/PKGBUILD @@ -0,0 +1,80 @@ +# $Id: PKGBUILD 91897 2013-05-29 00:39:11Z seblu $ +# Contributor: Giorgio Lando <lando at imap dot cc> +# Contributor: Sergej Pupykin +# Contributor: Thomas Bächler +# Contributor: Sébastien Luttringer +# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de> + +pkgname=fcron +pkgver=3.1.2 +pkgrel=7 +pkgdesc='Feature-rich cron implementation' +arch=(i686 x86_64) +url='http://fcron.free.fr' +license=('GPL') +depends=('pam' 'run-parts') +makedepends=('smtp-forwarder' 'vi') +optdepends=('smtp-forwarder: to send mails from cron jobs' + 'vi: default editor for fcrontab') +provides=('cron') +conflicts=('dcron') +backup=('etc/fcron/fcron.conf' + 'etc/fcron/fcron.allow' + 'etc/fcron/fcron.deny') +options=('emptydirs' '!makeflags') +install=$pkgname.install +source=("http://fcron.free.fr/archives/$pkgname-$pkgver.src.tar.gz" + 'systab.orig') +md5sums=('36bf213e15f3a480f2274f8e46cced0a' + 'afecbfd98caa49e8e4aa239fa1b19255') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc/fcron \ + --with-answer-all=no \ + --with-boot-install=no \ + --with-username=root \ + --with-groupname=root \ + --datarootdir=/usr/share \ + --datadir=/usr/share \ + --with-docdir=/usr/share/doc \ + --localstatedir=/var \ + --with-systemdsystemunitdir=/usr/lib/systemd/system \ + --with-piddir=/run \ + --with-editor=/usr/bin/vi \ + --with-sendmail=/usr/sbin/sendmail + make +} + +package() { + cd $pkgname-$pkgver + + make DESTDIR="$pkgdir/" install + install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcron.pam" "$pkgdir/etc/pam.d/fcron" + + install -D -m644 "$srcdir/$pkgname-$pkgver/files/fcrontab.pam" "$pkgdir/etc/pam.d/fcrontab" + + # Install a default fcrontab so that fcron can completely replace dcron + # We doesn't use binary format which is incompatible between arch and may cause crash + # We regenerate the binary format at each update + install -D -m640 "$srcdir/systab.orig" "$pkgdir/var/spool/fcron/systab.orig" + + # Add cron.* directories + install -d -m755 "$pkgdir/etc/cron.daily" + install -d -m755 "$pkgdir/etc/cron.hourly" + install -d -m755 "$pkgdir/etc/cron.monthly" + install -d -m755 "$pkgdir/etc/cron.weekly" + + # avoid conflict with filesystem>=2012.06 + rmdir "$pkgdir"/{var/,}run + + # avoid conflict with libbsd - #31259 + rm "$pkgdir/usr/share/man/man3/bitstring.3" \ + "$pkgdir/usr/share/man/fr/man3/bitstring.3" + rmdir --ignore-fail-on-non-empty "$pkgdir/usr/share/man/man3" \ + "$pkgdir/usr/share/man/fr/man3" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/fcron/fcron.install b/community/fcron/fcron.install new file mode 100644 index 000000000..f7b0abddf --- /dev/null +++ b/community/fcron/fcron.install @@ -0,0 +1,13 @@ +# arg 1: the new package version +post_install() { + # Generate binary format which is incompatible between arch + fcrontab -z -u systab &>/dev/null +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install "$1" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/fcron/systab.orig b/community/fcron/systab.orig new file mode 100644 index 000000000..00af327bc --- /dev/null +++ b/community/fcron/systab.orig @@ -0,0 +1,4 @@ +&bootrun 01 * * * * /usr/bin/run-parts /etc/cron.hourly +&bootrun 02 00 * * * /usr/bin/run-parts /etc/cron.daily +&bootrun 22 00 * * 0 /usr/bin/run-parts /etc/cron.weekly +&bootrun 42 00 1 * * /usr/bin/run-parts /etc/cron.monthly |