Added raddump
SVN-Revision: 2650
This commit is contained in:
parent
ae3c308186
commit
f1aa9e55a1
@ -105,6 +105,7 @@ source "package/rp-pppoe/Config.in"
|
||||
source "package/pptp/Config.in"
|
||||
source "package/pptpd/Config.in"
|
||||
source "package/quagga/Config.in"
|
||||
source "package/raddump/Config.in"
|
||||
source "package/rarpd/Config.in"
|
||||
source "package/reaim/Config.in"
|
||||
source "package/robocfg/Config.in"
|
||||
|
@ -297,6 +297,7 @@ portmap-compile: tcp_wrappers-compile
|
||||
postgresql-compile: zlib-compile
|
||||
ppp-compile: linux-atm-compile
|
||||
quagga-compile: readline-compile ncurses-compile
|
||||
raddump-compile: openssl-compile libpcap-compile
|
||||
rarpd-compile: libnet-compile
|
||||
ifneq ($(BR2_PACKAGE_LIBRRD),)
|
||||
rrdcollect-compile: rrdtool-compile
|
||||
|
8
openwrt/package/raddump/Config.in
Executable file
8
openwrt/package/raddump/Config.in
Executable file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_RADDUMP
|
||||
tristate "raddump........................... raddump interprets captured RADIUS packets."
|
||||
default m if CONFIG_DEVEL
|
||||
select BR2_PACKAGE_LIBOPENSSL
|
||||
select BR2_PACKAGE_LIBPCAP
|
||||
help
|
||||
raddump interprets captured RADIUS packets to print a timestamp, packet length, RADIUS packet type,
|
||||
source and destination hosts and ports, and included attribute names and values for each packet.
|
53
openwrt/package/raddump/Makefile
Executable file
53
openwrt/package/raddump/Makefile
Executable file
@ -0,0 +1,53 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=raddump
|
||||
PKG_VERSION:=0.3.1
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=f8c29c67141ea78bb6ae8b97d5149480
|
||||
PKG_SOURCE_URL:=@SF/raddump
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,RADDUMP,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
./configure \
|
||||
ac_cv_c_bigendian=no \
|
||||
ac_cv_func_malloc_0_nonnull=yes \
|
||||
ac_cv_func_realloc_0_nonnull=yes \
|
||||
$(DISABLE_NLS) \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--sbindir=/usr/sbin \
|
||||
--libexecdir=/usr/lib \
|
||||
--sysconfdir=/etc \
|
||||
--datadir=/usr/share \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--infodir=/usr/info \
|
||||
--program-prefix="" \
|
||||
--with-gnu-ld \
|
||||
);
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) DESTDIR=$(PKG_INSTALL_DIR) -C $(PKG_BUILD_DIR) install
|
||||
touch $@
|
||||
|
||||
$(IPKG_RADDUMP):
|
||||
mkdir -p $(IDIR_RADDUMP)
|
||||
cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_RADDUMP)/
|
||||
$(RSTRIP) $(IDIR_RADDUMP)
|
||||
$(IPKG_BUILD) $(IDIR_RADDUMP) $(PACKAGE_DIR)
|
6
openwrt/package/raddump/ipkg/raddump.control
Executable file
6
openwrt/package/raddump/ipkg/raddump.control
Executable file
@ -0,0 +1,6 @@
|
||||
Package: raddump
|
||||
Depends: libpcap, libopenssl
|
||||
Section: net
|
||||
Architecture: mipsel
|
||||
Priority: optional
|
||||
Description: raddump interprets captured RADIUS packets to print a timestamp, packet length, RADIUS packet type, source and destination hosts and ports, and included attribute names and values for each packet.
|
Loading…
Reference in New Issue
Block a user