use Build/Configure/Default macro, don't check for libusb - it doesn't seem to be...
[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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=vrrpd
12 PKG_VERSION:=1.0
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=6d5066ea1a6ced817376ca0f54765447
15
16 PKG_SOURCE_URL:=@SF/vrrpd
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/vrrpd
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=Virtual Router Redundancy Protocol daemon
28 DESCRIPTION:=VRRPd is an implementation of Virtual Router Redundancy\\\
29 Protocol as specified in rfc2338. VRRPd is interoperable with\\\
30 other RFC-based VRRP implementations, including Cisco and\\\
31 Juniper, and is included as a standard feature on ImageStream\\\
32 routers.\\\
33 URL:=http://www.sourceforge.net/projects/vrrpd
34 endef
35
36 define Package/vrrpd/conffiles
37 /etc/default/vrrpd
38 endef
39
40 define Build/Compile
41 $(call Build/Compile/Default, \
42 DBG_OPT="" \
43 MAIN_OPT="$(TARGET_CFLAGS)" \
44 vrrpd)
45 endef
46
47 define Package/vrrpd/install
48 install -d -m0755 $(1)/etc/default
49 install -m0644 ./files/vrrpd.default $(1)/etc/default/vrrpd
50 install -d -m0755 $(1)/etc/init.d
51 install -m0755 ./files/vrrpd.init $(1)/etc/init.d/vrrpd
52 install -d -m0755 $(1)/usr/sbin
53 install -m0755 $(PKG_BUILD_DIR)/vrrpd $(1)/usr/sbin/
54 endef
55
56 $(eval $(call BuildPackage,vrrpd))