Date: Tue, 19 Feb 2019 19:46:45 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493377 - in head/net: . libusipp Message-ID: <201902191946.x1JJkjk1058408@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Tue Feb 19 19:46:44 2019 New Revision: 493377 URL: https://svnweb.freebsd.org/changeset/ports/493377 Log: Add libusipp 2.24 usi++ (UNIX Socket Interface) is a low-level network-library for sending/receiving IP, IP6, ARP etc. packets directly on RAW or PACKET sockets. It can also be used for network-monitoring and rapid development of pentesting tools. It requires libpcap and libdnet if you want the Layer2 DNET provider. WWW: https://github.com/stealth/libusipp Added: head/net/libusipp/ head/net/libusipp/Makefile (contents, props changed) head/net/libusipp/distinfo (contents, props changed) head/net/libusipp/pkg-descr (contents, props changed) head/net/libusipp/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Feb 19 19:45:40 2019 (r493376) +++ head/net/Makefile Tue Feb 19 19:46:44 2019 (r493377) @@ -417,6 +417,7 @@ SUBDIR += libtnl SUBDIR += libtrace SUBDIR += libunp + SUBDIR += libusipp SUBDIR += libutp SUBDIR += libvncserver SUBDIR += libwebsockets Added: head/net/libusipp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/Makefile Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,30 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= libusipp +PORTVERSION= 2.24 +DISTVERSIONPREFIX= libusipp- +DISTVERSIONSUFFIX= s +CATEGORIES= net + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Unix socket interface for C++ raw IP/IP6/UDP/TCP, layer 2 framework + +LICENSE= GPLv3+ + +USES= autoreconf compiler:c++11-lang gmake + +GNU_CONFIGURE= yes +WRKSRC_SUBDIR= src +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= stealth + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/usi++ ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/../usi++/*.h ${STAGEDIR}${PREFIX}/include/usi++ + ${INSTALL_DATA} ${WRKSRC}/libusi++.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libusi++.so ${STAGEDIR}${PREFIX}/lib + +.include <bsd.port.mk> Added: head/net/libusipp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/distinfo Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549818671 +SHA256 (stealth-libusipp-libusipp-2.24s_GH0.tar.gz) = da7703df75ba17cde726b1df85067627229b829893583c27fe082d77c505ed96 +SIZE (stealth-libusipp-libusipp-2.24s_GH0.tar.gz) = 69940 Added: head/net/libusipp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/pkg-descr Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,6 @@ +usi++ (UNIX Socket Interface) is a low-level network-library for +sending/receiving IP, IP6, ARP etc. packets directly on RAW or PACKET sockets. +It can also be used for network-monitoring and rapid development of pentesting +tools. It requires libpcap and libdnet if you want the Layer2 DNET provider. + +WWW: https://github.com/stealth/libusipp Added: head/net/libusipp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/pkg-plist Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,33 @@ +include/usi++/80211.h +include/usi++/Layer2.h +include/usi++/RX.h +include/usi++/RX_fd.h +include/usi++/RX_string.h +include/usi++/TX.h +include/usi++/TX_IP.h +include/usi++/TX_IP6.h +include/usi++/TX_dnet_eth.h +include/usi++/TX_dnet_ip.h +include/usi++/TX_pcap.h +include/usi++/TX_pcap_eth.h +include/usi++/TX_string.h +include/usi++/arp.h +include/usi++/config.h +include/usi++/datalink.h +include/usi++/eapol.h +include/usi++/icmp.h +include/usi++/icmp6.h +include/usi++/ip.h +include/usi++/ip6.h +include/usi++/ipcomp.h +include/usi++/misc.h +include/usi++/object.h +include/usi++/radiotap.h +include/usi++/refcount.h +include/usi++/tcp.h +include/usi++/udp.h +include/usi++/usi++.h +include/usi++/usi-structs-compat.h +include/usi++/usi-structs.h +lib/libusi++.a +lib/libusi++.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902191946.x1JJkjk1058408>