summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>2002-03-10 11:08:13 +0000
committerBill Fumerola <billf@FreeBSD.org>2002-03-10 11:08:13 +0000
commit1e6bceaed4b6791e0bc707be59e16558f1713f5c (patch)
tree8d32f85afbb10093ec11217403e9b63ad1e2012e
parentAdd Yet Another Window Manager. (diff)
upgrade to 0.49, the author has switched to requiring autoconf.
also add a patch to get around missing inet(3) includes.
Notes
Notes: svn path=/head/; revision=55812
-rw-r--r--net/mtr/Makefile6
-rw-r--r--net/mtr/distinfo3
-rw-r--r--net/mtr/files/patch-0613
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"