645d7b0e73
- release packages get a "patch level" added to their release number, this last one being incremented on every change ; - trunk packages should always get their release number incremented. SVN-Revision: 15321
65 lines
1.5 KiB
Makefile
65 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 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:=radvd
|
|
PKG_VERSION:=1.2
|
|
PKG_RELEASE:=1.1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://v6web.litech.org/radvd/dist \
|
|
http://download.sourcemage.org/mirror
|
|
PKG_MD5SUM:=614876420d76cd2bb5bcb49760c8b9e3
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/radvd
|
|
SECTION:=ipv6
|
|
CATEGORY:=IPv6
|
|
TITLE:=IPv6 Routing Advertisement Daemon
|
|
URL:=http://v6web.litech.org/radvd/
|
|
endef
|
|
|
|
define Package/radvd/description
|
|
IPv6 Routing Advertisement Daemon.
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default,\
|
|
--with-configfile=/etc/radvd.conf \
|
|
--with-logfile=/var/log/radvd.log \
|
|
--with-pidfile=/var/run/radvd.pid \
|
|
)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
radvd_LDADD=""
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
install
|
|
endef
|
|
|
|
define Package/radvd/conffiles
|
|
/etc/config/radvd
|
|
endef
|
|
|
|
define Package/radvd/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) ./files/radvd.config $(1)/etc/config/radvd
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/radvd.init $(1)/etc/init.d/radvd
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/radvd $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/radvdump $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,radvd))
|