aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2015-07-24 16:59:11 +0800
committersunpoet <sunpoet@FreeBSD.org>2015-07-24 16:59:11 +0800
commit2b2d2b4331d9ef79467f12fdfd3fe5debe7b51be (patch)
tree4bb9e934077d178a803f7187c90349ea195178b1 /sysutils
parent5a20233e7e27fe739ed0551c1873d0f7779ae893 (diff)
downloadfreebsd-ports-gnome-2b2d2b4331d9ef79467f12fdfd3fe5debe7b51be.tar.gz
freebsd-ports-gnome-2b2d2b4331d9ef79467f12fdfd3fe5debe7b51be.tar.zst
freebsd-ports-gnome-2b2d2b4331d9ef79467f12fdfd3fe5debe7b51be.zip
- Update to 0.57
Changes: http://joeyh.name/code/moreutils/news/version_0.57/
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/moreutils/Makefile2
-rw-r--r--sysutils/moreutils/distinfo4
-rw-r--r--sysutils/moreutils/files/patch-ifdata.c35
3 files changed, 3 insertions, 38 deletions
diff --git a/sysutils/moreutils/Makefile b/sysutils/moreutils/Makefile
index 7433f82c7586..a6555482f059 100644
--- a/sysutils/moreutils/Makefile
+++ b/sysutils/moreutils/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= moreutils
-PORTVERSION= 0.56
+PORTVERSION= 0.57
CATEGORIES= sysutils
MASTER_SITES= DEBIAN_POOL
DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
diff --git a/sysutils/moreutils/distinfo b/sysutils/moreutils/distinfo
index 6ccfffe49a43..24c5413a7093 100644
--- a/sysutils/moreutils/distinfo
+++ b/sysutils/moreutils/distinfo
@@ -1,2 +1,2 @@
-SHA256 (moreutils_0.56.orig.tar.gz) = ec4b7a1e1d1e1d6ec606d2877301ec06c6cf4091776687d9b76f4d019705e77f
-SIZE (moreutils_0.56.orig.tar.gz) = 46704
+SHA256 (moreutils_0.57.orig.tar.gz) = 3a7d54b0634e5eda8c3c43490d47cea189156700892dea6d876867cef9bc0d1d
+SIZE (moreutils_0.57.orig.tar.gz) = 46749
diff --git a/sysutils/moreutils/files/patch-ifdata.c b/sysutils/moreutils/files/patch-ifdata.c
deleted file mode 100644
index 1ae89835fd07..000000000000
--- a/sysutils/moreutils/files/patch-ifdata.c
+++ /dev/null
@@ -1,35 +0,0 @@
---- ifdata.c.orig 2015-06-03 16:04:42 UTC
-+++ ifdata.c
-@@ -1,4 +1,4 @@
--#include <error.h>
-+#include <err.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <sys/socket.h>
-@@ -19,7 +19,7 @@
- #include <net/if.h>
- #endif
-
--#if defined(__APPLE__)
-+#if defined(__FreeBSD__)
- #define s6_addr16 __u6_addr.__u6_addr16
- #include <net/if.h>
- #endif
-@@ -130,7 +130,7 @@ static int do_socket_ioctl(const char *i
- *ioctl_errno = errno;
- if (print_error == PRINT_ERROR) {
- if (errno == ENODEV)
-- error(EXIT_FAILURE, 0,
-+ err(EXIT_FAILURE,
- "No such network interface: %s", ifname);
- else
- fprintf(stderr, "ioctl on %s: %s\n", ifname,
-@@ -392,7 +392,7 @@ void please_do(int ndo, int *todo, const
- for (i=0; i<ndo; i++) {
- if (!exists &&
- (todo[i] != DO_EXISTS) && (todo[i] != DO_PEXISTS))
-- error(EXIT_FAILURE, 0, "No such network interface: %s",
-+ err(EXIT_FAILURE, "No such network interface: %s",
- ifname);
-
- switch (todo[i]) {