2006-08-06 12:53:27 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=openntpd
|
2006-11-03 10:40:40 +00:00
|
|
|
PKG_VERSION:=3.9p1
|
2008-01-14 10:38:27 +00:00
|
|
|
PKG_RELEASE:=2
|
2006-08-06 12:53:27 +00:00
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-08-06 12:53:27 +00:00
|
|
|
PKG_SOURCE_URL:=ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/ \
|
|
|
|
ftp://ftp.de.openbsd.org/pub/unix/OpenBSD/OpenNTPD/ \
|
|
|
|
ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenNTPD/ \
|
|
|
|
ftp://ftp.sunet.se/pub/OpenBSD/OpenNTPD/
|
2006-11-03 10:40:40 +00:00
|
|
|
PKG_MD5SUM:=afc34175f38d08867c1403d9008600b3
|
2006-08-06 12:53:27 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/openntpd
|
2007-09-25 18:10:51 +00:00
|
|
|
SUBMENU:=Time Synchronization
|
2006-08-06 12:53:27 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-10-30 13:51:50 +00:00
|
|
|
TITLE:=NTP server
|
2006-08-06 12:53:27 +00:00
|
|
|
URL:=http://www.openntpd.org/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/openntpd/description
|
|
|
|
A free and easy to use NTP (Network Time Protocol) implementation.
|
|
|
|
endef
|
|
|
|
|
2006-08-06 12:53:27 +00:00
|
|
|
define Package/openntpd/conffiles
|
|
|
|
/etc/ntpd.conf
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/openntpd/postinst
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
name=ntp
|
|
|
|
id=50
|
|
|
|
|
|
|
|
# do not change below
|
|
|
|
# check if we are on real system
|
2006-08-23 21:51:57 +00:00
|
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
2006-08-06 12:53:27 +00:00
|
|
|
# create copies of passwd and group, if we use squashfs
|
2006-08-23 21:51:57 +00:00
|
|
|
rootfs=`mount |awk '/root/ { print $$5 }'`
|
|
|
|
if [ "$$rootfs" = "squashfs" ]; then
|
2006-08-06 12:53:27 +00:00
|
|
|
if [ -h /etc/group ]; then
|
|
|
|
rm /etc/group
|
|
|
|
cp -p /rom/etc/group /etc/group
|
|
|
|
fi
|
|
|
|
if [ -h /etc/passwd ]; then
|
|
|
|
rm /etc/passwd
|
|
|
|
cp -p /rom/etc/passwd /etc/passwd
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ""
|
2006-08-23 21:51:57 +00:00
|
|
|
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
|
|
|
|
echo "adding group $$name to /etc/group"
|
|
|
|
echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
|
2006-08-06 12:53:27 +00:00
|
|
|
fi
|
2006-08-23 21:51:57 +00:00
|
|
|
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
|
|
|
|
echo "adding user $$name to /etc/passwd"
|
|
|
|
echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
|
2006-08-06 12:53:27 +00:00
|
|
|
fi
|
|
|
|
|
2006-08-23 21:51:57 +00:00
|
|
|
grep -q '^ntp[[:space:]]*123/udp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
|
2008-03-08 09:32:28 +00:00
|
|
|
[ $$? -ne 0 ] && echo "ntp 123/udp" >>$${IPKG_INSTROOT}/etc/services || exit 0
|
2006-08-06 12:53:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-10-30 13:51:50 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--with-builtin-arc4random \
|
2006-08-06 12:53:27 +00:00
|
|
|
--with-privsep-user=ntp \
|
2006-10-30 13:51:50 +00:00
|
|
|
--with-adjtimex \
|
|
|
|
)
|
2006-08-06 12:53:27 +00:00
|
|
|
endef
|
|
|
|
|
2006-08-16 23:55:22 +00:00
|
|
|
define Build/Compile
|
2006-08-06 12:53:27 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -DUSE_ADJTIMEX"
|
2006-08-16 23:55:22 +00:00
|
|
|
endef
|
2006-08-06 12:53:27 +00:00
|
|
|
|
|
|
|
define Package/openntpd/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_DATA) ./files/ntpd.conf $(1)/etc/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/ntpd.init $(1)/etc/init.d/ntpd
|
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
|
|
$(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
|
2006-08-06 12:53:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,openntpd))
|