Add ndisc package, in its own menu to avoid breaking sort order
SVN-Revision: 1041
This commit is contained in:
parent
f97bff36e4
commit
61d63818fe
6 changed files with 91 additions and 0 deletions
|
@ -40,6 +40,7 @@ source "package/kismet/Config.in"
|
|||
source "package/l2tpd/Config.in"
|
||||
source "package/lighttpd/Config.in"
|
||||
source "package/maradns/Config.in"
|
||||
source "package/ndisc/Config.in"
|
||||
source "package/net-snmp/Config.in"
|
||||
source "package/nfs-server/Config.in"
|
||||
source "package/nmap/Config.in"
|
||||
|
|
|
@ -52,6 +52,7 @@ package-$(BR2_PACKAGE_MICROPERL) += microperl
|
|||
package-$(BR2_PACKAGE_MONIT) += monit
|
||||
package-$(BR2_PACKAGE_MYSQL) += mysql
|
||||
package-$(BR2_PACKAGE_NCURSES) += ncurses
|
||||
package-$(BR2_PACKAGE_NDISC) += ndisc
|
||||
package-$(BR2_PACKAGE_NET_SNMP) += net-snmp
|
||||
package-$(BR2_PACKAGE_NFS_SERVER) += nfs-server
|
||||
package-$(BR2_PACKAGE_NMAP) += nmap
|
||||
|
|
32
openwrt/package/ndisc/Config.in
Normal file
32
openwrt/package/ndisc/Config.in
Normal file
|
@ -0,0 +1,32 @@
|
|||
menu "ndisc - ICMPv6 discovery tools"
|
||||
|
||||
config BR2_PACKAGE_NDISC
|
||||
bool
|
||||
default n
|
||||
depends BR2_PACKAGE_NDISC6 || BR2_PACKAGE_RDISC6
|
||||
|
||||
config BR2_PACKAGE_NDISC6
|
||||
tristate "ndisc6 - ICMPv6 neighbour discovery tool"
|
||||
# default m if CONFIG_DEVEL
|
||||
default n
|
||||
select BR2_PACKAGE_NDISC
|
||||
help
|
||||
|
||||
ICMPv6 neighbour discovery tools
|
||||
|
||||
http://people.via.ecp.fr/~rem/ndisc/
|
||||
|
||||
|
||||
config BR2_PACKAGE_RDISC6
|
||||
tristate "rdisc6 - ICMPv6 router discovery tool"
|
||||
# default m if CONFIG_DEVEL
|
||||
default n
|
||||
select BR2_PACKAGE_NDISC
|
||||
help
|
||||
|
||||
ICMPv6 router discovery tool
|
||||
|
||||
http://people.via.ecp.fr/~rem/ndisc/
|
||||
|
||||
|
||||
endmenu
|
41
openwrt/package/ndisc/Makefile
Normal file
41
openwrt/package/ndisc/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ndisc
|
||||
PKG_VERSION:=0.1.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:= c7a8acd8e3d1053265faa17f7edb75d6
|
||||
|
||||
PKG_SOURCE_URL:=http://people.via.ecp.fr/~rem/ndisc/v0.1/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_CAT:=bzcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,NDISC6,ndisc6,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
$(eval $(call PKG_template,RDISC6,rdisc6,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
all
|
||||
touch $@
|
||||
|
||||
$(IPKG_NDISC6):
|
||||
install -d -m0755 $(IDIR_NDISC6)/usr/bin
|
||||
install -m0755 $(PKG_BUILD_DIR)/ndisc6 $(IDIR_NDISC6)/usr/bin/
|
||||
$(RSTRIP) $(IDIR_NDISC6)
|
||||
$(IPKG_BUILD) $(IDIR_NDISC6) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_RDISC6):
|
||||
install -d -m0755 $(IDIR_RDISC6)/usr/bin
|
||||
install -m0755 $(PKG_BUILD_DIR)/rdisc6 $(IDIR_RDISC6)/usr/bin/
|
||||
$(RSTRIP) $(IDIR_RDISC6)
|
||||
$(IPKG_BUILD) $(IDIR_RDISC6) $(PACKAGE_DIR)
|
8
openwrt/package/ndisc/ipkg/ndisc6.control
Normal file
8
openwrt/package/ndisc/ipkg/ndisc6.control
Normal file
|
@ -0,0 +1,8 @@
|
|||
Package: ndisc6
|
||||
Priority: optional
|
||||
Section: net
|
||||
Version: [TBDL]
|
||||
Architecture: [TBDL]
|
||||
Maintainer: Nico <nthill@free.fr>
|
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/ndisc/
|
||||
Description: ICMPv6 Neighbour Discovery tool
|
8
openwrt/package/ndisc/ipkg/rdisc6.control
Normal file
8
openwrt/package/ndisc/ipkg/rdisc6.control
Normal file
|
@ -0,0 +1,8 @@
|
|||
Package: rdisc6
|
||||
Priority: optional
|
||||
Section: net
|
||||
Version: [TBDL]
|
||||
Architecture: [TBDL]
|
||||
Maintainer: Nico <nthill@free.fr>
|
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/ndisc/
|
||||
Description: ICMPv6 Router Discovery tool
|
Loading…
Reference in a new issue