unbound: moved to github
[packages.git] / net / chrony / Makefile
1 #
2 # Copyright (C) 2006-2012 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:=chrony
11 PKG_VERSION:=1.26
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:= ftp://download.tuxfamily.org/projects/chrony/ \
16         http://download.tuxfamily.org/chrony/
17 PKG_MD5SUM:=ad6dd619ff1986e4ff780363c64e2246
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/chrony
22   SUBMENU:=Time Synchronization
23   SECTION:=net
24   CATEGORY:=Network
25   DEPENDS:=+libreadline +libncurses @!TARGET_avr32 @!powerpc
26   TITLE:=NTP client/server for on-demand connections
27   URL:=http://chrony.sunsite.dk/
28 endef
29
30 define Package/chrony/description
31         A NTP implementation that has been specifically written to work
32         well in the case of an intermittent (e.g. dial-on-demand)
33         connection to the network where your NTP servers are.
34 endef
35
36 define Package/chrony/conffiles
37 /etc/chrony/chrony.conf
38 endef
39
40 define Build/Configure
41         $(call Build/Configure/Default, \
42                         --target=$(GNU_TARGET_NAME) \
43                         --prefix=/usr \
44                         --with-readline-includes=$(STAGING_DIR)/usr/include \
45                         --with-readline-library=$(STAGING_DIR)/usr/lib \
46                         --disable-linuxcaps \
47         )
48 endef
49
50 define Build/Compile
51         $(MAKE) -C $(PKG_BUILD_DIR) \
52                 $(TARGET_CONFIGURE_OPTS) \
53                 prefix="$(PKG_INSTALL_DIR)/usr"
54 endef
55
56 define Package/chrony/install
57         $(INSTALL_DIR) $(1)/usr/bin/
58         $(INSTALL_DIR) $(1)/usr/sbin/
59         $(INSTALL_BIN) $(PKG_BUILD_DIR)/chronyd $(1)/usr/sbin
60         $(INSTALL_BIN) $(PKG_BUILD_DIR)/chronyc $(1)/usr/bin
61         $(INSTALL_DIR) $(1)/etc/init.d
62         $(INSTALL_DIR) $(1)/etc/config
63         $(INSTALL_DIR) $(1)/etc/chrony
64         $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
65         $(INSTALL_BIN) ./files/ntpd.hotplug $(1)/etc/hotplug.d/iface/20-ntpd
66         $(INSTALL_BIN) ./files/ntpd.init $(1)/etc/init.d/ntpd
67         $(INSTALL_CONF) ./files/ntpd.config $(1)/etc/config/ntpd
68         $(INSTALL_CONF) ./files/chrony.conf $(1)/etc/chrony/chrony.conf
69         $(INSTALL_CONF) ./files/chrony.keys $(1)/etc/chrony/chrony.keys
70 endef
71
72 $(eval $(call BuildPackage,chrony))