mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
a09f10783c
This tool is capable of managing sets of IPs. Why to use iprange over any other aggregate ? * simpler * supports many input formats, all together in the same file * faster, actually a lot faster (thanks to the original design by Gabriel Somlo) * can compare files with IPs to find if they overlap and to what degree * can find the IPs common to a set of files * can exclude IPs (merge a set of files while excluding all IPs matched by another set of files) WWW: https://github.com/firehol/iprange MFH: 2017Q2 Sponsored by: Rubicon Communications (Netgate)
20 lines
323 B
Makefile
20 lines
323 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= iprange
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= https://firehol.org/download/iprange/releases/v1.0.3/
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Manage IP ranges
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= tar:xz
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/iprange \
|
|
man/man1/iprange.1.gz
|
|
|
|
.include <bsd.port.mk>
|