mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
2593246092
Now to the news: version 0.46 is available now. - IPv4 database updated (20030906) - add support of LACNIC registry - add output format "octal" Print octal representation of a given IPv6 address: (useful for djbdns/tinydns) 3ffe:ffff::1 -> \77\376\377\377\0\0\0\0\0\0\0\0\0\0\0\1 --printfulluncompressed 3ffe:ffff::1 -> \077\376\377\377\000\000\000\000\000\000\000\000\000\000\000\001 Available format options: --printfulluncompressed: Print in full uncompressed format - New program "ipv6logstats" for parsing web server logs to get some IPv4/IPv6 distribution data and build time line charts. See examples for more. - add input types: "ipv4hex" (hexadecimal IPv4 address) "ipv4revhex" (reverse hexadecimal IPv4 address) - add support of spaces in MAC/EUI-48 addresses
27 lines
623 B
Makefile
27 lines
623 B
Makefile
# New ports collection makefile for: ipv6calc
|
|
# Date created: 30 January 2002
|
|
# Whom: Edwin Groothuis <edwin@mavetju.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ipv6calc
|
|
PORTVERSION= 0.46
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= Convert, change and calculate with IPv6 addresses
|
|
|
|
LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/ipv6calc/ipv6calc ${PREFIX}/bin
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/ipv6logconv/ipv6logconv ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|