diff options
author | junovitch <junovitch@FreeBSD.org> | 2017-01-10 10:43:54 +0800 |
---|---|---|
committer | junovitch <junovitch@FreeBSD.org> | 2017-01-10 10:43:54 +0800 |
commit | 5899f947c6f9f654eb2ef7d8153141073019b220 (patch) | |
tree | e2d5ea6635bad152159ec82c5b8a6d73dca0cfa9 | |
parent | 8a0d182f61ca063354da0b84a8f911ebfdd6ad53 (diff) | |
download | freebsd-ports-gnome-5899f947c6f9f654eb2ef7d8153141073019b220.tar.gz freebsd-ports-gnome-5899f947c6f9f654eb2ef7d8153141073019b220.tar.zst freebsd-ports-gnome-5899f947c6f9f654eb2ef7d8153141073019b220.zip |
net-mgmt/ipv6calc: update 0.99.1 -> 0.99.2
Changelog: https://github.com/pbiering/ipv6calc/releases/tag/0.99.2
PR: 215784
Submitted by: Danilo G. Baio <dbaio@bsd.com.br> (maintainer)
-rw-r--r-- | net-mgmt/ipv6calc/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/ipv6calc/distinfo | 6 | ||||
-rw-r--r-- | net-mgmt/ipv6calc/files/patch-ipv6calc_ipv6calc.c | 14 | ||||
-rw-r--r-- | net-mgmt/ipv6calc/files/patch-man__Makefile.in | 4 |
4 files changed, 6 insertions, 20 deletions
diff --git a/net-mgmt/ipv6calc/Makefile b/net-mgmt/ipv6calc/Makefile index 7e53deac5e39..88ca11fcfdde 100644 --- a/net-mgmt/ipv6calc/Makefile +++ b/net-mgmt/ipv6calc/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ipv6calc -PORTVERSION= 0.99.1 +PORTVERSION= 0.99.2 CATEGORIES= net-mgmt ipv6 MASTER_SITES= ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/ diff --git a/net-mgmt/ipv6calc/distinfo b/net-mgmt/ipv6calc/distinfo index bd10d03e637a..6d4c1a13e6d5 100644 --- a/net-mgmt/ipv6calc/distinfo +++ b/net-mgmt/ipv6calc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1482011313 -SHA256 (ipv6calc-0.99.1.tar.gz) = b0bc5d2f83c928524f82053b40f670589bd0181719046a2e4c267912a2ba1d28 -SIZE (ipv6calc-0.99.1.tar.gz) = 1234188 +TIMESTAMP = 1483364445 +SHA256 (ipv6calc-0.99.2.tar.gz) = f2eeec1b8d8626756f2cb9c461e9d1db20affccf582d43ded439bdb2d12646ef +SIZE (ipv6calc-0.99.2.tar.gz) = 1287951 diff --git a/net-mgmt/ipv6calc/files/patch-ipv6calc_ipv6calc.c b/net-mgmt/ipv6calc/files/patch-ipv6calc_ipv6calc.c deleted file mode 100644 index 8341b3d934f6..000000000000 --- a/net-mgmt/ipv6calc/files/patch-ipv6calc_ipv6calc.c +++ /dev/null @@ -1,14 +0,0 @@ ---- ipv6calc/ipv6calc.c.orig 2015-08-23 09:53:27 UTC -+++ ipv6calc/ipv6calc.c -@@ -1209,9 +1209,9 @@ PIPE_input: - outputtype = FORMAT_ipv4addr; - } else if ( ((inputtype == FORMAT_ipv4addr) || (inputtype == FORMAT_ipv4hex) || (inputtype == FORMAT_ipv4revhex)) && (action == ACTION_undefined || action == ACTION_anonymize) ) { - outputtype = FORMAT_ipv4addr; -- } else if ( (inputtype == FORMAT_mac) ) { -+ } else if ( inputtype == FORMAT_mac ) { - outputtype = FORMAT_mac; -- } else if ( (inputtype == FORMAT_eui64) ) { -+ } else if ( inputtype == FORMAT_eui64 ) { - outputtype = FORMAT_eui64; - } else if ( (inputtype == FORMAT_bitstring) || (inputtype == FORMAT_base85) ) { - outputtype = FORMAT_ipv6addr; diff --git a/net-mgmt/ipv6calc/files/patch-man__Makefile.in b/net-mgmt/ipv6calc/files/patch-man__Makefile.in index 941594bc7305..b7f96963aee0 100644 --- a/net-mgmt/ipv6calc/files/patch-man__Makefile.in +++ b/net-mgmt/ipv6calc/files/patch-man__Makefile.in @@ -1,11 +1,11 @@ ---- man/Makefile.in.orig 2009-01-06 16:37:45 UTC +--- man/Makefile.in.orig 2016-12-29 08:56:34 UTC +++ man/Makefile.in @@ -25,7 +25,7 @@ clean: test: install: - mkdir -p $(DESTDIR)$(mandir)/man8 -+ mkdir -p $(DESTDIR)${PREFIX}/man//man8 ++ mkdir -p $(DESTDIR)${PREFIX}/man/man8 for f in *.8; do \ - install -m 644 $$f $(DESTDIR)$(mandir)/man8; \ + install -m 644 $$f $(DESTDIR)${PREFIX}/man/man8; \ |