diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/raddump |
Initial import
Diffstat (limited to 'package/raddump')
-rw-r--r-- | package/raddump/Config.in | 11 | ||||
-rwxr-xr-x | package/raddump/Makefile | 27 | ||||
-rwxr-xr-x | package/raddump/ipkg/raddump.control | 6 |
3 files changed, 44 insertions, 0 deletions
diff --git a/package/raddump/Config.in b/package/raddump/Config.in new file mode 100644 index 000000000..f56795969 --- /dev/null +++ b/package/raddump/Config.in @@ -0,0 +1,11 @@ +config ADK_PACKAGE_RADDUMP + prompt "raddump........................... raddump interprets captured RADIUS packets." + tristate + default n + select ADK_PACKAGE_LIBOPENSSL + select ADK_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..3eee5473b --- /dev/null +++ b/package/raddump/Makefile @@ -0,0 +1,27 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${TOPDIR}/rules.mk + +PKG_NAME:= raddump +PKG_VERSION:= 0.3.1 +PKG_RELEASE:= 1 +PKG_MD5SUM:= f8c29c67141ea78bb6ae8b97d5149480 +MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=raddump/} + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,RADDUMP,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +CONFIGURE_STYLE:= gnu +CONFIGURE_ARGS+= ac_cv_c_bigendian=no \ + ac_cv_func_malloc_0_nonnull=yes \ + ac_cv_func_realloc_0_nonnull=yes +INSTALL_STYLE:= auto + +post-install: + ${CP} ${WRKINST}/* ${IDIR_RADDUMP}/ + +include ${TOPDIR}/mk/pkg-bottom.mk 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. |