[packages] ntpd: the daemon depends on mdnsresponder (provides libdns_sd.so)
[openwrt/svn-archive/archive.git] / net / ntpd / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=ntp
11 PKG_VERSION:=4.2.4p8
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/
16 PKG_MD5SUM:=fe137056e7e611798a46971a783567ce
17
18 PKG_BUILD_DEPENDS:=libelf
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ntpd/Default
23 SUBMENU:=Time Synchronization
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=ISC ntp
27 URL:=http://www.ntp.org/
28 endef
29
30 define Package/ntpd/Default/description
31 The ISC ntp suite is a collection of tools used to synchronize
32 the system clock with remote NTP time servers and run/montior
33 local NTP servers.
34 endef
35
36 define Package/ntpd
37 $(call Package/ntpd/Default)
38 DEPENDS:=+mdnsresponder
39 TITLE+= server
40 endef
41
42 define Package/ntpd/description
43 $(call Package/ntpd/Default/description)
44 This package contains the ntpd server.
45 endef
46
47 define Package/ntpdate
48 $(call Package/ntpd/Default)
49 TITLE+=date
50 endef
51
52 define Package/ntpdate/description
53 $(call Package/ntpd/Default/description)
54 This package contains ntpdate.
55 endef
56
57 define Package/ntp-utils
58 $(call Package/ntpd/Default)
59 DEPENDS:=+libncurses
60 TITLE+= utilities
61 endef
62
63 define Package/ntp-utils/description
64 $(call Package/ntpd/Default/description)
65 This package contains ntpdc and ntpq.
66 endef
67
68 define Package/ntpd/conffiles
69 /etc/ntp.conf
70 endef
71
72 define Package/ntpd/Default/postinst
73 #!/bin/sh
74 grep -q '^ntp[[:space:]]*123/udp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
75 [ $$? -ne 0 ] && echo "ntp 123/udp # Network Time Protocol" >>$${IPKG_INSTROOT}/etc/services || exit 0
76 grep -q '^ntp[[:space:]]*123/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
77 [ $$? -ne 0 ] && echo "ntp 123/tcp # Network Time Protocol" >>$${IPKG_INSTROOT}/etc/services || exit 0
78 endef
79
80 define Package/ntpdate/postinst
81 $(call Package/ntpd/Default/postinst)
82 endef
83
84 define Package/ntpd/postinst
85 $(call Package/ntpd/Default/postinst)
86 endef
87
88 define Package/ntp-utils/postinst
89 $(call Package/ntpd/Default/postinst)
90 endef
91
92 TARGET_CPPFLAGS += -I$(STAGING_DIR)/usr/include/libelf
93
94 CONFIGURE_VARS += \
95 ac_cv_header_md5_h=no
96
97 define Build/Configure
98 $(call Build/Configure/Default, \
99 --disable-all-clocks \
100 --disable-parse-clocks \
101 --enable-NMEA \
102 --enable-LOCAL-CLOCK \
103 --enable-SHM \
104 --disable-linuxcaps, \
105 ac_cv_lib_rt_sched_setscheduler=no \
106 )
107 endef
108
109 define Build/Compile
110 $(MAKE) -C $(PKG_BUILD_DIR) \
111 CFLAGS="$(TARGET_CFLAGS)"
112 endef
113
114 define Package/ntpd/install
115 $(INSTALL_DIR) $(1)/usr/sbin/
116 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd/ntpd $(1)/usr/sbin/
117 $(INSTALL_DIR) $(1)/etc
118 $(INSTALL_CONF) ./files/ntp.conf $(1)/etc/
119 $(INSTALL_DIR) $(1)/etc/init.d
120 $(INSTALL_BIN) ./files/ntpd.init $(1)/etc/init.d/ntpd
121 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
122 $(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
123 endef
124
125 define Package/ntpdate/install
126 $(INSTALL_DIR) $(1)/usr/sbin/
127 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdate/ntpdate $(1)/usr/sbin/
128 $(INSTALL_DIR) $(1)/etc/init.d
129 $(INSTALL_BIN) ./files/ntpdate.init $(1)/etc/init.d/ntpdate
130 endef
131
132 define Package/ntp-utils/install
133 $(INSTALL_DIR) $(1)/usr/sbin/
134 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdc/ntpdc $(1)/usr/sbin/
135 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpq/ntpq $(1)/usr/sbin/
136 endef
137
138 $(eval $(call BuildPackage,ntpd))
139 $(eval $(call BuildPackage,ntpdate))
140 $(eval $(call BuildPackage,ntp-utils))