diff --git a/packages/net-misc/htpdate/files/htpdate.conf b/packages/net-misc/htpdate/files/htpdate.conf new file mode 100644 index 0000000..1c7e02d --- /dev/null +++ b/packages/net-misc/htpdate/files/htpdate.conf @@ -0,0 +1,12 @@ +# config file for /etc/init.d/htpdate + +# Add at least one http server to use: +#SERVERS="" + +# If you are using a proxy server to connect to the +# internet comment out the following line and insert the +# address and port of your proxy server. +#PROXY="-P :" + +# Set additional options, see 'man htpdate' for refernce +HTPDATE_OPTS="-D -s" diff --git a/packages/net-misc/htpdate/files/htpdate.init-r1 b/packages/net-misc/htpdate/files/htpdate.init-r1 new file mode 100644 index 0000000..9cf9883 --- /dev/null +++ b/packages/net-misc/htpdate/files/htpdate.init-r1 @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +description="Synchronizes local system with time offered by remote webservers over HTTP" +pidfile="/run/htpdate.pid" +command="/usr/sbin/htpdate" +command_args="${HTPDATE_OPTS} ${PROXY} ${SERVERS}" + +depend() { + need net + use dns logger +} + +start_pre() { + if [ -z "${SERVERS}" ] ; then + eerror "You need to set at least one http server to use in /etc/conf.d/htpdate" + return 1 + fi +} diff --git a/packages/net-misc/htpdate/htpdate-1.1.3.exheres-0 b/packages/net-misc/htpdate/htpdate-1.1.3.exheres-0 new file mode 100644 index 0000000..5ef3600 --- /dev/null +++ b/packages/net-misc/htpdate/htpdate-1.1.3.exheres-0 @@ -0,0 +1,33 @@ +# Copyright 2016 Julian Ospald +# Distributed under the terms of the GNU General Public License v2 + + +SUMMARY="Synchronize local workstation with time offered by remote webservers" +HOMEPAGE="http://www.vervest.org/fiki/bin/view/HTP/DownloadC" +DOWNLOADS="http://www.vervest.org/htp/archive/c/${PNV}.tar.gz" + +LICENCES="GPL-2" +SLOT="0" +PLATFORMS="~amd64 ~x86" + +DEPENDENCIES="" + + +src_prepare() { + # Use more standard adjtimex() to fix uClibc builds. + edo sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] +} + +src_compile() { + emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="${CC}" +} + +src_install() { + dobin htpdate + doman htpdate.8 + dodoc README Changelog + + newconfd "${FILES}"/htpdate.conf htpdate + newinitd "${FILES}"/htpdate.init-r1 htpdate +} +