upgrade to 0.49, the author has switched to requiring autoconf.

also add a patch to get around missing inet(3) includes.
This commit is contained in:
Bill Fumerola 2002-03-10 11:08:13 +00:00
parent 6ef9a3dd55
commit 1e6bceaed4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=55812
3 changed files with 17 additions and 5 deletions

View file

@ -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

View file

@ -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

13
net/mtr/files/patch-06 Normal file
View file

@ -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"