[packages] ntpd: force disabling of mdns responder support
[packages.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   TITLE+= server
39 endef
40
41 define Package/ntpd/description
42         $(call Package/ntpd/Default/description)
43         This package contains the ntpd server.
44 endef
45
46 define Package/ntpdate
47   $(call Package/ntpd/Default)
48   TITLE+=date
49 endef
50
51 define Package/ntpdate/description
52         $(call Package/ntpd/Default/description)
53         This package contains ntpdate.
54 endef
55
56 define Package/ntp-utils
57   $(call Package/ntpd/Default)
58   DEPENDS:=+libncurses
59   TITLE+= utilities
60 endef
61
62 define Package/ntp-utils/description
63         $(call Package/ntpd/Default/description)
64         This package contains ntpdc and ntpq.
65 endef
66
67 define Package/ntpd/conffiles
68 /etc/ntp.conf
69 endef
70
71 define Package/ntpd/Default/postinst
72 #!/bin/sh
73 grep -q '^ntp[[:space:]]*123/udp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
74 [ $$? -ne 0 ] && echo "ntp            123/udp     # Network Time Protocol" >>$${IPKG_INSTROOT}/etc/services || exit 0
75 grep -q '^ntp[[:space:]]*123/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
76 [ $$? -ne 0 ] && echo "ntp            123/tcp     # Network Time Protocol" >>$${IPKG_INSTROOT}/etc/services || exit 0
77 endef
78
79 define Package/ntpdate/postinst
80   $(call Package/ntpd/Default/postinst)
81 endef
82
83 define Package/ntpd/postinst
84   $(call Package/ntpd/Default/postinst)
85 endef
86
87 define Package/ntp-utils/postinst
88   $(call Package/ntpd/Default/postinst)
89 endef
90
91 TARGET_CPPFLAGS += -I$(STAGING_DIR)/usr/include/libelf
92
93 CONFIGURE_VARS += \
94         ac_cv_header_md5_h=no
95
96 define Build/Configure
97         $(call Build/Configure/Default, \
98                 --disable-all-clocks \
99                 --disable-parse-clocks \
100                 --enable-NMEA \
101                 --enable-LOCAL-CLOCK \
102                 --enable-SHM \
103                 --disable-linuxcaps, \
104                 ac_cv_lib_rt_sched_setscheduler=no \
105                 ac_cv_header_dns_sd_h=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))