2006-08-10 22:00:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=vgp
|
|
|
|
PKG_VERSION:=0.2.1
|
|
|
|
PKG_RELEASE:=1
|
2006-10-30 13:51:50 +00:00
|
|
|
|
2006-08-10 22:00:46 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_SOURCE_URL:=http://vgpd.freaknet.org/files/
|
|
|
|
PKG_MD5SUM:=b8c25b5dfcb944f78bbc584be9c230c7
|
2006-08-10 22:00:46 +00:00
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2006-08-10 22:00:46 +00:00
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/vgp
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2006-10-30 13:51:50 +00:00
|
|
|
TITLE:=A daemon working like Cisco(c) HSRP
|
2006-08-10 22:00:46 +00:00
|
|
|
URL:=http://vgpd.freaknet.org/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/vgp/description
|
|
|
|
VGP (Virtual Gateway Protocol)is a very simple protocol able to
|
|
|
|
work in a way similar to Cisco(c) HSRP. It implements the idea
|
|
|
|
of Virtual Gateway to provide fault tollerance (and load
|
|
|
|
balancing) on your net. Each client on your net has as its
|
|
|
|
default gateway set to the virtual gateway and not the real router.
|
|
|
|
endef
|
|
|
|
|
2006-10-30 13:51:50 +00:00
|
|
|
# uses GNU configure
|
|
|
|
|
2006-08-10 22:00:46 +00:00
|
|
|
define Build/Compile
|
2006-10-30 13:51:50 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
2006-08-10 22:00:46 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/vgp/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2006-10-30 13:51:50 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/vgpd $(1)/usr/bin/
|
2006-08-10 22:00:46 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,vgp))
|