70c37d3e962d99e3aef15d8dcb89031dabaa93d3
[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 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/ntpd
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=full featured NTP server
28 DEPENDS:=+libreadline
29 DESCRIPTION:=\
30 The full featured original ntpd
31 URL:=http://www.ntp.org/
32 endef
33
34 define Package/ntpd/conffiles
35 /etc/ntp.conf
36 endef
37
38 define Package/ntpd/postinst
39 #!/bin/sh
40 echo "ntp 123/udp # Network Time Protocol
41 ntp 123/tcp # Network Time Protocol" >> $${IPKG_INSTROOT}/etc/services
42 endef
43
44 define Build/Configure
45 $(call Build/Configure/Default, \
46 --disable-all-clocks \
47 --disable-parse-clocks \
48 --enable-NMEA \
49 --enable-LOCAL-CLOCK \
50 --enable-SHM \
51 --enable-linuxcaps \
52 )
53 endef
54
55 define Build/Compile
56 $(MAKE) -C $(PKG_BUILD_DIR) \
57 CFLAGS="$(TARGET_CFLAGS)"
58 endef
59
60 define Package/ntpd/install
61 $(INSTALL_DIR) $(1)/usr/sbin/
62 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpd/ntpd $(1)/usr/sbin/
63 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdate/ntpdate $(1)/usr/sbin/
64 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpdc/ntpdc $(1)/usr/sbin/
65 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ntpq/ntpq $(1)/usr/sbin/
66 $(INSTALL_DIR) $(1)/etc
67 $(INSTALL_DATA) ./files/ntp.conf $(1)/etc/
68 $(INSTALL_DIR) $(1)/etc/init.d
69 $(INSTALL_BIN) ./files/ntpd.init $(1)/etc/init.d/ntpd
70 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
71 $(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
72 endef
73
74 $(eval $(call BuildPackage,ntpd))