9b7bea42504d22204c56f7d72359b68332a892e2
[openwrt/svn-archive/archive.git] / net / ntpd / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=ntp
12 PKG_VERSION:=4.2.4
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/
17 PKG_MD5SUM:=eb9147d26cbe18bd8fbec07f1df55aef
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/ntpd
24 SUBMENU:=Time Synchronization
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=full featured NTP server
28 DEPENDS:=+libreadline
29 URL:=http://www.ntp.org/
30 endef
31
32 define Package/ntpd/description
33 The full featured original ntpd
34 endef
35
36 define Package/ntpd/conffiles
37 /etc/ntp.conf
38 endef
39
40 define Package/ntpd/postinst
41 #!/bin/sh
42 echo "ntp 123/udp # Network Time Protocol
43 ntp 123/tcp # Network Time Protocol" >> $${IPKG_INSTROOT}/etc/services
44 endef
45
46 define Build/Configure
47 $(call Build/Configure/Default, \
48 --disable-all-clocks \
49 --disable-parse-clocks \
50 --enable-NMEA \
51 --enable-LOCAL-CLOCK \
52 --enable-SHM \
53 --enable-linuxcaps \
54 )
55 endef
56
57 define Build/Compile
58 $(MAKE) -C $(PKG_BUILD_DIR) \
59 CFLAGS="$(TARGET_CFLAGS)"
60 endef
61
62 define Package/ntpd/install
63 $(INSTALL_DIR) $(1)/usr/sbin/
64 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd/ntpd $(1)/usr/sbin/
65 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdate/ntpdate $(1)/usr/sbin/
66 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdc/ntpdc $(1)/usr/sbin/
67 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpq/ntpq $(1)/usr/sbin/
68 $(INSTALL_DIR) $(1)/etc
69 $(INSTALL_DATA) ./files/ntp.conf $(1)/etc/
70 $(INSTALL_DIR) $(1)/etc/init.d
71 $(INSTALL_BIN) ./files/ntpd.init $(1)/etc/init.d/ntpd
72 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
73 $(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
74 endef
75
76 $(eval $(call BuildPackage,ntpd))