diff options
author | billf <billf@FreeBSD.org> | 2002-03-10 19:08:13 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2002-03-10 19:08:13 +0800 |
commit | 32fdc48de711fbbdef533fa3424069b71895e69b (patch) | |
tree | e845bf59623900177d91a191a50d7b4262b3446f /net/mtr | |
parent | dc94bf383b12ad3effc5707a076ed50ae642bb1b (diff) | |
download | freebsd-ports-gnome-32fdc48de711fbbdef533fa3424069b71895e69b.tar.gz freebsd-ports-gnome-32fdc48de711fbbdef533fa3424069b71895e69b.tar.zst freebsd-ports-gnome-32fdc48de711fbbdef533fa3424069b71895e69b.zip |
upgrade to 0.49, the author has switched to requiring autoconf.
also add a patch to get around missing inet(3) includes.
Diffstat (limited to 'net/mtr')
-rw-r--r-- | net/mtr/Makefile | 6 | ||||
-rw-r--r-- | net/mtr/distinfo | 3 | ||||
-rw-r--r-- | net/mtr/files/patch-06 | 13 |
3 files changed, 17 insertions, 5 deletions
diff --git a/net/mtr/Makefile b/net/mtr/Makefile index efd9e35fdf37..9819528f0730 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -6,7 +6,7 @@ # PORTNAME= mtr -PORTVERSION= 0.45 +PORTVERSION= 0.49 PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/ \ @@ -15,10 +15,10 @@ MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/ \ MAINTAINER= billf@FreeBSD.org -HAS_CONFIGURE= yes +USE_AUTOCONF= yes USE_GMAKE= yes WANT_GTK= yes -WANT_IPV6= yes +#WANT_IPV6= yes MAN8= mtr.8 diff --git a/net/mtr/distinfo b/net/mtr/distinfo index da514e924146..3092ad6a8b3e 100644 --- a/net/mtr/distinfo +++ b/net/mtr/distinfo @@ -1,2 +1 @@ -MD5 (mtr-0.45.tar.gz) = f6020e188d131129d7089e3e560863f2 -MD5 (mtr-045-v6-20020207.diff.gz) = 55e1c297cc7fc6998cfa75a5b2243e73 +MD5 (mtr-0.49.tar.gz) = 22963e1b9ca0da3b3e1ddb1810353d36 diff --git a/net/mtr/files/patch-06 b/net/mtr/files/patch-06 new file mode 100644 index 000000000000..371abc28c266 --- /dev/null +++ b/net/mtr/files/patch-06 @@ -0,0 +1,13 @@ +--- mtr.c.orig Wed Mar 6 23:48:27 2002 ++++ mtr.c Sun Mar 10 00:28:50 2002 +@@ -22,8 +22,10 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> ++#include <sys/types.h> + #include <netinet/in.h> + #include <sys/socket.h> ++#include <arpa/inet.h> + + #include "mtr-curses.h" + #include "getopt.h" |