86e42ccc9700df0f68ff289a797ec44eb4471403
[packages.git] / net / vgp / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=vgp
11 PKG_VERSION:=0.2.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://vgpd.freaknet.org/files/
16 PKG_MD5SUM:=b8c25b5dfcb944f78bbc584be9c230c7
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/vgp
21   SECTION:=net
22   CATEGORY:=Network
23   TITLE:=A daemon working like Cisco(c) HSRP
24   URL:=http://vgpd.freaknet.org/
25 endef
26
27 define Package/vgp/description
28         VGP (Virtual Gateway Protocol)is a very simple protocol able to 
29         work in a way similar to Cisco(c) HSRP. It implements the idea 
30         of Virtual Gateway to provide fault tollerance (and load 
31         balancing) on your net. Each client on your net has as its 
32         default gateway set to the virtual gateway and not the real router.
33 endef
34
35 # uses GNU configure
36
37 define Build/Compile
38         $(MAKE) -C $(PKG_BUILD_DIR) \
39                 DESTDIR="$(PKG_INSTALL_DIR)" \
40                 all install
41 endef
42
43 define Package/vgp/install
44         $(INSTALL_DIR) $(1)/usr/bin
45         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vgpd $(1)/usr/bin/
46 endef
47
48 $(eval $(call BuildPackage,vgp))