a840e5b5a525fb12f1d194866489efbf9925c158
[openwrt/svn-archive/archive.git] / net / keepalived / Makefile
1 #
2 # Copyright (C) 2006-2008 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:=keepalived
11 PKG_VERSION:=1.1.15
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:= http://www.keepalived.org/software
16 PKG_MD5SUM:=4c93f5d8b6bfabe84b02828a5bbb7aa0
17
18 include $(INCLUDE_DIR)/package.mk
19 include $(INCLUDE_DIR)/kernel.mk
20
21 define Package/keepalived
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=Failover and monitoring daemon for LVS clusters
25 URL:=http://www.keepalived.org/
26 SUBMENU:=HA
27 DEPENDS:=+libpopt +libopenssl
28 endef
29
30 define Package/keepalived/description
31 Failover and monitoring daemon for Linux Virtual Server (LVS) clusters.
32 endef
33
34 define Package/keepalived/conffiles
35 /etc/keepalived/keepalived.conf
36 endef
37
38 acvar=$(subst -,_,$(subst .,_,$(subst /,_,$(1))))
39
40 CONFIGURE_ARGS+= \
41 --enable-shared \
42 --disable-static \
43 --disable-debug \
44 --disable-strip \
45 --disable-lvs \
46 --disable-lvs-syncd \
47 --with-kernel-dir="$(LINUX_DIR)" \
48
49 CONFIGURE_VARS+= \
50 ac_cv_file_$(call acvar,$(LINUX_DIR)/net/core/link_watch.c)=no \
51
52 define Build/Compile
53 rm -rf $(PKG_INSTALL_DIR)
54 mkdir -p $(PKG_INSTALL_DIR)
55 $(MAKE) -C $(PKG_BUILD_DIR) \
56 DESTDIR="$(PKG_INSTALL_DIR)" \
57 STRIP="/bin/true" \
58 all install
59 endef
60
61 define Package/keepalived/install
62 $(INSTALL_DIR) $(1)/usr/sbin
63 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/keepalived $(1)/usr/sbin/
64 $(INSTALL_DIR) $(1)/usr/bin
65 $(CP) $(PKG_INSTALL_DIR)/usr/bin/genhash $(1)/usr/bin/
66 $(INSTALL_DIR) $(1)/etc/keepalived
67 $(CP) $(PKG_INSTALL_DIR)/etc/keepalived/keepalived.conf $(1)/etc/keepalived/keepalived.conf
68 $(INSTALL_DIR) $(1)/etc/init.d
69 $(INSTALL_BIN) ./files/keepalived.init $(1)/etc/init.d/keepalived
70 endef
71
72 $(eval $(call BuildPackage,keepalived))