blob: 472578a23a973f892c8fbed733e43e48c8e1606a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=vrrpd
PKG_VERSION:=1.0
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/vrrpd
PKG_MD5SUM:=6d5066ea1a6ced817376ca0f54765447
include $(INCLUDE_DIR)/package.mk
define Package/vrrpd
SECTION:=net
CATEGORY:=Network
SUBMENU:=Routing and Redirection
TITLE:=Virtual Router Redundancy Protocol daemon
URL:=http://www.sourceforge.net/projects/vrrpd
endef
define Package/vrrpd/description
VRRPd is an implementation of Virtual Router Redundancy
Protocol as specified in rfc2338. VRRPd is interoperable with
other RFC-based VRRP implementations, including Cisco and
Juniper, and is included as a standard feature on ImageStream
routers.
endef
define Build/Compile
$(call Build/Compile/Default, \
DBG_OPT="" \
MAIN_OPT="$(TARGET_CFLAGS)" \
vrrpd \
)
endef
define Package/vrrpd/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/vrrpd $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DATA) ./files/vrrpd.config $(1)/etc/config/vrrpd
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/vrrpd.init $(1)/etc/init.d/vrrpd
endef
define Package/vrrpd/conffiles
/etc/config/vrrpd
endef
$(eval $(call BuildPackage,vrrpd))
|