diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-13 13:38:59 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-13 13:38:59 +0000 |
commit | 9c8d67ef156c7cd60ea57074881b8547f907aacd (patch) | |
tree | f37c1eabde5191b3f39458d337a31d26de940a8b /package/raddump | |
parent | 6cfe225066885175321c3e4a7c27d98bbdced631 (diff) |
Added raddump
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2650 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/raddump')
-rwxr-xr-x | package/raddump/Config.in | 8 | ||||
-rwxr-xr-x | package/raddump/Makefile | 53 | ||||
-rwxr-xr-x | package/raddump/ipkg/raddump.control | 6 |
3 files changed, 67 insertions, 0 deletions
diff --git a/package/raddump/Config.in b/package/raddump/Config.in new file mode 100755 index 000000000..bacafe34a --- /dev/null +++ b/package/raddump/Config.in @@ -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. diff --git a/package/raddump/Makefile b/package/raddump/Makefile new file mode 100755 index 000000000..f8132c482 --- /dev/null +++ b/package/raddump/Makefile @@ -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) diff --git a/package/raddump/ipkg/raddump.control b/package/raddump/ipkg/raddump.control new file mode 100755 index 000000000..2d31b0221 --- /dev/null +++ b/package/raddump/ipkg/raddump.control @@ -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. |