1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:34:32 +03:00

Added raddump

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2650 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2005-12-13 13:38:59 +00:00
parent 6cfe225066
commit 9c8d67ef15
5 changed files with 69 additions and 0 deletions

View File

@ -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"

View File

@ -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
package/raddump/Config.in Executable file
View 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
package/raddump/Makefile Executable file
View 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)

View 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.