From 3c5355f255b5f931d2477f1c701958f931a6ee13 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 2 Jun 2016 11:13:02 +0200 Subject: [PATCH] openrdate: added overlayed port --- openrdate/.footprint | 11 +++++++++++ openrdate/.md5sum | 2 ++ openrdate/Pkgfile | 18 ++++++++++++++++++ openrdate/rdate | 13 +++++++++++++ 4 files changed, 44 insertions(+) create mode 100644 openrdate/.footprint create mode 100644 openrdate/.md5sum create mode 100644 openrdate/Pkgfile create mode 100644 openrdate/rdate diff --git a/openrdate/.footprint b/openrdate/.footprint new file mode 100644 index 0000000..cb3fa65 --- /dev/null +++ b/openrdate/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/cron/ +drwxr-xr-x root/root etc/cron/daily/ +-rwxr-xr-x root/root etc/cron/daily/rdate +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rdate +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/rdate.8.gz diff --git a/openrdate/.md5sum b/openrdate/.md5sum new file mode 100644 index 0000000..90e4fb6 --- /dev/null +++ b/openrdate/.md5sum @@ -0,0 +1,2 @@ +ad9bd58e1fb7babc74d0a0a16a1248a2 openrdate-1.2.tar.gz +c212d60bdabec86c27d82b1a19223aa0 rdate diff --git a/openrdate/Pkgfile b/openrdate/Pkgfile new file mode 100644 index 0000000..934462e --- /dev/null +++ b/openrdate/Pkgfile @@ -0,0 +1,18 @@ +# Description: Time setting software implementing RFC 868 (inetd time) and RFC 2030 (SNTP/NTP) protocols +# URL: http://sourceforge.net/projects/openrdate/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=openrdate +version=1.2 +release=2 +source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version.tar.gz/$name-$version.tar.gz + rdate) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --build=arm-unknown-linux-gnueabi + make + make DESTDIR=$PKG install + install -D -m 755 $SRC/rdate $PKG/etc/cron/daily/rdate +} diff --git a/openrdate/rdate b/openrdate/rdate new file mode 100644 index 0000000..1e9218b --- /dev/null +++ b/openrdate/rdate @@ -0,0 +1,13 @@ +#!/bin/sh +# +# /etc/cron/daily/rdate: synchronize system clock +# +# Note: +# If called with the -a option, rdate use the adjtime +# system call instead of settimeofday to gradually skew +# the local time to the remote time rather than just +# hopping. See rdate(8) and adjtime(2). + +#/usr/bin/rdate -nav pool.ntp.org + +# End of file -- 2.26.2