[package] add mpdas (#5125)
[openwrt/svn-archive/archive.git] / net / vrrpd / 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:=vrrpd
11 PKG_VERSION:=1.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/vrrpd
16 PKG_MD5SUM:=6d5066ea1a6ced817376ca0f54765447
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/vrrpd
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Virtual Router Redundancy Protocol daemon
26 URL:=http://www.sourceforge.net/projects/vrrpd
27 endef
28
29 define Package/vrrpd/description
30 VRRPd is an implementation of Virtual Router Redundancy
31 Protocol as specified in rfc2338. VRRPd is interoperable with
32 other RFC-based VRRP implementations, including Cisco and
33 Juniper, and is included as a standard feature on ImageStream
34 routers.
35 endef
36
37 define Package/vrrpd/conffiles
38 /etc/default/vrrpd
39 endef
40
41 define Build/Compile
42 $(call Build/Compile/Default, \
43 DBG_OPT="" \
44 MAIN_OPT="$(TARGET_CFLAGS)" \
45 vrrpd \
46 )
47 endef
48
49 define Package/vrrpd/install
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/vrrpd $(1)/usr/sbin/
52 $(INSTALL_DIR) $(1)/etc/default
53 $(INSTALL_DATA) ./files/vrrpd.default $(1)/etc/default/vrrpd
54 $(INSTALL_DIR) $(1)/etc/init.d
55 $(INSTALL_BIN) ./files/vrrpd.init $(1)/etc/init.d/vrrpd
56 endef
57
58 $(eval $(call BuildPackage,vrrpd))