You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

163 lines
3.9 KiB

  1. #
  2. # Copyright (C) 2006-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ntp
  9. PKG_VERSION:=4.2.8p10
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/
  13. PKG_HASH:=ddd2366e64219b9efa0f7438e06800d0db394ac5c88e13c17b70d0dcdf99b99f
  14. PKG_LICENSE:=Unique
  15. PKG_LICENSE_FILES:=COPYRIGHT html/copyright.html
  16. PKG_FIXUP:=autoreconf
  17. PKG_LIBTOOL_PATHS:=. sntp
  18. PKG_CHECK_FORMAT_SECURITY:=0
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/ntpd/Default
  21. SUBMENU:=Time Synchronization
  22. SECTION:=net
  23. CATEGORY:=Network
  24. TITLE:=ISC ntp
  25. MAINTAINER:=Peter Wagner <tripolar@gmx.at>
  26. URL:=http://www.ntp.org/
  27. DEPENDS:=+libopenssl +libpthread +libcap
  28. endef
  29. define Package/ntpd/Default/description
  30. The ISC ntp suite is a collection of tools used to synchronize the
  31. system clock with remote NTP time servers and run/monitor local NTP
  32. servers.
  33. endef
  34. define Package/ntpd
  35. $(call Package/ntpd/Default)
  36. DEPENDS+= +ntp-utils
  37. TITLE+= server
  38. USERID:=ntp=123:ntp=123
  39. endef
  40. define Package/ntpd/description
  41. $(call Package/ntpd/Default/description)
  42. .
  43. This package contains the ntpd server.
  44. endef
  45. define Package/ntpdate
  46. $(call Package/ntpd/Default)
  47. TITLE+=date
  48. endef
  49. define Package/ntpdate/description
  50. $(call Package/ntpd/Default/description)
  51. .
  52. This package contains ntpdate.
  53. endef
  54. define Package/ntp-utils
  55. $(call Package/ntpd/Default)
  56. TITLE+= utilities
  57. endef
  58. define Package/ntp-utils/description
  59. $(call Package/ntpd/Default/description)
  60. .
  61. This package contains ntpdc, ntpq and ntptime.
  62. endef
  63. define Package/ntp-keygen
  64. $(call Package/ntpd/Default)
  65. TITLE+=keygen
  66. DEPENDS+= +libevent2-core
  67. endef
  68. define Package/ntp-keygen/description
  69. $(call Package/ntpd/Default/description)
  70. .
  71. This package contains the ntp-keygen.
  72. endef
  73. define Package/ntpd/conffiles
  74. /etc/ntp.conf
  75. endef
  76. CONFIGURE_VARS += \
  77. ac_cv_header_md5_h=no \
  78. ac_cv_lib_rt_sched_setscheduler=no \
  79. ac_cv_header_dns_sd_h=no \
  80. hw_cv_func_snprintf_c99=yes \
  81. hw_cv_func_vsnprintf_c99=yes \
  82. CONFIGURE_ARGS += \
  83. --disable-all-clocks \
  84. --disable-parse-clocks \
  85. --without-ntpsnmpd \
  86. --without-lineeditlibs \
  87. --enable-NMEA \
  88. --enable-LOCAL-CLOCK \
  89. --enable-SHM \
  90. --enable-ATOM \
  91. --enable-linuxcaps \
  92. --with-yielding-select=yes \
  93. --with-crypto \
  94. --with-openssl-incdir="$(STAGING_DIR)/usr/include" \
  95. --with-openssl-libdir="$(STAGING_DIR)/usr/lib"
  96. define Package/ntpd/install
  97. $(INSTALL_DIR) $(1)/sbin
  98. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd/ntpd $(1)/sbin/
  99. $(INSTALL_DIR) $(1)/usr/sbin
  100. $(INSTALL_BIN) ./files/ntpd.hotplug-helper $(1)/usr/sbin/
  101. $(INSTALL_DIR) $(1)/etc
  102. $(INSTALL_CONF) ./files/ntp.conf $(1)/etc/
  103. $(INSTALL_DIR) $(1)/etc/init.d
  104. $(INSTALL_BIN) ./files/ntpd.init $(1)/etc/init.d/ntpd
  105. $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
  106. $(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
  107. endef
  108. define Package/ntpd/postinst
  109. #!/bin/sh
  110. [ -L "$${IPKG_INSTROOT}/usr/sbin/ntpd" ] && rm -f "$${IPKG_INSTROOT}/usr/sbin/ntpd"
  111. exit 0
  112. endef
  113. define Package/ntpd/postrm
  114. #!/bin/sh
  115. /bin/busybox ntpd -h 2>&1 | grep -q BusyBox && ln -sf ../../bin/busybox /usr/sbin/ntpd
  116. exit 0
  117. endef
  118. define Package/ntpdate/install
  119. $(INSTALL_DIR) $(1)/usr/sbin
  120. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdate/ntpdate $(1)/usr/sbin/
  121. $(INSTALL_DIR) $(1)/etc/init.d
  122. $(INSTALL_BIN) ./files/ntpdate.init $(1)/etc/init.d/ntpdate
  123. endef
  124. define Package/ntp-utils/install
  125. $(INSTALL_DIR) $(1)/usr/sbin
  126. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdc/ntpdc $(1)/usr/sbin/
  127. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpq/ntpq $(1)/usr/sbin/
  128. $(INSTALL_BIN) $(PKG_BUILD_DIR)/util/ntptime $(1)/usr/sbin/
  129. endef
  130. define Package/ntp-keygen/install
  131. $(INSTALL_DIR) $(1)/usr/sbin
  132. $(INSTALL_BIN) $(PKG_BUILD_DIR)/util/ntp-keygen $(1)/usr/sbin/
  133. endef
  134. $(eval $(call BuildPackage,ntpd))
  135. $(eval $(call BuildPackage,ntpdate))
  136. $(eval $(call BuildPackage,ntp-utils))
  137. $(eval $(call BuildPackage,ntp-keygen))