b467acd6c2
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19108 3c298f89-4303-0410-b956-a3cf2f4a3e73
141 lines
3.4 KiB
Makefile
141 lines
3.4 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 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:=ntp
|
|
PKG_VERSION:=4.2.6
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/
|
|
PKG_MD5SUM:=4d64a99592b818aa9419fc9dcb149746
|
|
|
|
PKG_BUILD_DEPENDS:=libelf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ntpd/Default
|
|
SUBMENU:=Time Synchronization
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=ISC ntp
|
|
URL:=http://www.ntp.org/
|
|
endef
|
|
|
|
define Package/ntpd/Default/description
|
|
The ISC ntp suite is a collection of tools used to synchronize
|
|
the system clock with remote NTP time servers and run/montior
|
|
local NTP servers.
|
|
endef
|
|
|
|
define Package/ntpd
|
|
$(call Package/ntpd/Default)
|
|
TITLE+= server
|
|
endef
|
|
|
|
define Package/ntpd/description
|
|
$(call Package/ntpd/Default/description)
|
|
This package contains the ntpd server.
|
|
endef
|
|
|
|
define Package/ntpdate
|
|
$(call Package/ntpd/Default)
|
|
TITLE+=date
|
|
endef
|
|
|
|
define Package/ntpdate/description
|
|
$(call Package/ntpd/Default/description)
|
|
This package contains ntpdate.
|
|
endef
|
|
|
|
define Package/ntp-utils
|
|
$(call Package/ntpd/Default)
|
|
DEPENDS:=+libncurses
|
|
TITLE+= utilities
|
|
endef
|
|
|
|
define Package/ntp-utils/description
|
|
$(call Package/ntpd/Default/description)
|
|
This package contains ntpdc and ntpq.
|
|
endef
|
|
|
|
define Package/ntpd/conffiles
|
|
/etc/ntp.conf
|
|
endef
|
|
|
|
define Package/ntpd/Default/postinst
|
|
#!/bin/sh
|
|
grep -q '^ntp[[:space:]]*123/udp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
|
|
[ $$? -ne 0 ] && echo "ntp 123/udp # Network Time Protocol" >>$${IPKG_INSTROOT}/etc/services || exit 0
|
|
grep -q '^ntp[[:space:]]*123/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
|
|
[ $$? -ne 0 ] && echo "ntp 123/tcp # Network Time Protocol" >>$${IPKG_INSTROOT}/etc/services || exit 0
|
|
endef
|
|
|
|
define Package/ntpdate/postinst
|
|
$(call Package/ntpd/Default/postinst)
|
|
endef
|
|
|
|
define Package/ntpd/postinst
|
|
$(call Package/ntpd/Default/postinst)
|
|
endef
|
|
|
|
define Package/ntp-utils/postinst
|
|
$(call Package/ntpd/Default/postinst)
|
|
endef
|
|
|
|
TARGET_CPPFLAGS += -I$(STAGING_DIR)/usr/include/libelf
|
|
|
|
CONFIGURE_VARS += \
|
|
ac_cv_header_md5_h=no
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--disable-all-clocks \
|
|
--disable-parse-clocks \
|
|
--enable-NMEA \
|
|
--enable-LOCAL-CLOCK \
|
|
--enable-SHM \
|
|
--disable-linuxcaps, \
|
|
ac_cv_lib_rt_sched_setscheduler=no \
|
|
ac_cv_header_dns_sd_h=no \
|
|
)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CFLAGS="$(TARGET_CFLAGS)"
|
|
endef
|
|
|
|
define Package/ntpd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd/ntpd $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_CONF) ./files/ntp.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
|
|
endef
|
|
|
|
define Package/ntpdate/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdate/ntpdate $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/ntpdate.init $(1)/etc/init.d/ntpdate
|
|
endef
|
|
|
|
define Package/ntp-utils/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdc/ntpdc $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpq/ntpq $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ntpd))
|
|
$(eval $(call BuildPackage,ntpdate))
|
|
$(eval $(call BuildPackage,ntp-utils))
|