summaryrefslogtreecommitdiff
path: root/net/wmnetmon
diff options
context:
space:
mode:
Diffstat (limited to 'net/wmnetmon')
-rw-r--r--net/wmnetmon/Makefile32
-rw-r--r--net/wmnetmon/distinfo2
-rw-r--r--net/wmnetmon/files/patch-Makefile.in12
-rw-r--r--net/wmnetmon/files/patch-configure11
-rw-r--r--net/wmnetmon/files/patch-configure.in11
-rw-r--r--net/wmnetmon/files/patch-leds.c10
-rw-r--r--net/wmnetmon/files/patch-list.c11
-rw-r--r--net/wmnetmon/files/patch-pinger.c12
-rw-r--r--net/wmnetmon/files/patch-pinger.h22
-rw-r--r--net/wmnetmon/files/patch-tcpmonitor.c21
-rw-r--r--net/wmnetmon/pkg-descr12
11 files changed, 0 insertions, 156 deletions
diff --git a/net/wmnetmon/Makefile b/net/wmnetmon/Makefile
deleted file mode 100644
index 54c801c49fe5..000000000000
--- a/net/wmnetmon/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Created by: Konstantinos Konstantinidis <kkonstan@daemon.gr>
-# $FreeBSD$
-
-PORTNAME= wmnetmon
-PORTVERSION= 0.2p5
-PORTREVISION= 2
-CATEGORIES= net windowmaker
-MASTER_SITES= http://www.linuks.mine.nu/dockapps/
-
-MAINTAINER= xride@FreeBSD.org
-COMMENT= Host availability monitor intended for the WindowMaker dock
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-USES= xorg
-USE_XORG= xpm
-GNU_CONFIGURE= yes
-
-BINMODE= 4755
-
-PLIST_FILES= bin/wmnetmon share/examples/wmnetmon/wmnetmonrc
-
-OPTIONS_DEFINE= EXAMPLES
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/wmnetmon ${STAGEDIR}${PREFIX}/bin
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- ${INSTALL_DATA} ${WRKSRC}/wmnetmonrc ${STAGEDIR}${EXAMPLESDIR}
-
-.include <bsd.port.mk>
diff --git a/net/wmnetmon/distinfo b/net/wmnetmon/distinfo
deleted file mode 100644
index 833a69470fbd..000000000000
--- a/net/wmnetmon/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (wmnetmon-0.2p5.tar.gz) = 6c7576c9cbd95c35f14dcfa985e5f7b33341b3c27395e0962c71f4cec6c45f68
-SIZE (wmnetmon-0.2p5.tar.gz) = 49990
diff --git a/net/wmnetmon/files/patch-Makefile.in b/net/wmnetmon/files/patch-Makefile.in
deleted file mode 100644
index 95446f26ded9..000000000000
--- a/net/wmnetmon/files/patch-Makefile.in
+++ /dev/null
@@ -1,12 +0,0 @@
---- Makefile.in.orig 1999-07-10 19:04:53 UTC
-+++ Makefile.in
-@@ -11,9 +11,6 @@ all: wmnetmon
- wmnetmon: $(OBJS)
- $(CC) $(OBJS) -o wmnetmon $(LDFLAGS)
-
--.o:.c
-- $(CC) $(CFLAGS) -c $.c -o $.o
--
- install: wmnetmon
- $(INSTALL) wmnetmon $(BINDIR) -o root --mode=4755
-
diff --git a/net/wmnetmon/files/patch-configure b/net/wmnetmon/files/patch-configure
deleted file mode 100644
index 37da2415d55d..000000000000
--- a/net/wmnetmon/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig 1999-07-23 14:07:40 UTC
-+++ configure
-@@ -1605,7 +1605,7 @@ EOF
-
- fi
-
--for ac_hdr in fcntl.h malloc.h sys/file.h sys/time.h unistd.h sys/types.h ctype.h X11/Xlib.h X11/xpm.h
-+for ac_hdr in fcntl.h stdlib.h sys/file.h sys/time.h unistd.h sys/types.h ctype.h X11/Xlib.h X11/xpm.h
- do
- ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
diff --git a/net/wmnetmon/files/patch-configure.in b/net/wmnetmon/files/patch-configure.in
deleted file mode 100644
index 9632da24ffe8..000000000000
--- a/net/wmnetmon/files/patch-configure.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.in.orig 1999-07-23 14:03:17 UTC
-+++ configure.in
-@@ -43,7 +43,7 @@ fi
- dnl Checks for header files.
-
- AC_HEADER_STDC
--AC_CHECK_HEADERS(fcntl.h malloc.h sys/file.h sys/time.h unistd.h sys/types.h ctype.h X11/Xlib.h X11/xpm.h,,
-+AC_CHECK_HEADERS(fcntl.h stdlib.h sys/file.h sys/time.h unistd.h sys/types.h ctype.h X11/Xlib.h X11/xpm.h,,
- AC_MSG_ERROR([Couldn't find some include files... aborting]))
- AC_CHECK_HEADERS(netinet/in_systm.h netinet/in.h netinet/ip.h netinet/ip_icmp.h arpa/inet.h netdb.h sys/socket.h,,
- AC_MSG_ERROR([Couldn't find network include files]))
diff --git a/net/wmnetmon/files/patch-leds.c b/net/wmnetmon/files/patch-leds.c
deleted file mode 100644
index e9c3405cc117..000000000000
--- a/net/wmnetmon/files/patch-leds.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- leds.c.orig 1999-07-26 16:23:23 UTC
-+++ leds.c
-@@ -1,5 +1,7 @@
- #include <stdlib.h>
-+#if ! (defined __FreeBSD__ || defined __DragonFly__)
- #include <malloc.h>
-+#endif
- #include <X11/xpm.h>
- #include <stdio.h>
- #include "list.h"
diff --git a/net/wmnetmon/files/patch-list.c b/net/wmnetmon/files/patch-list.c
deleted file mode 100644
index d717372996e2..000000000000
--- a/net/wmnetmon/files/patch-list.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- list.c.orig 1999-07-22 12:43:11 UTC
-+++ list.c
-@@ -1,6 +1,8 @@
- #include "list.h"
- #include <stdlib.h>
-+#if ! (defined __FreeBSD__ || defined __DragonFly__)
- #include <malloc.h>
-+#endif
- #include <string.h>
-
-
diff --git a/net/wmnetmon/files/patch-pinger.c b/net/wmnetmon/files/patch-pinger.c
deleted file mode 100644
index 58bb2cd48859..000000000000
--- a/net/wmnetmon/files/patch-pinger.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- pinger.c.orig 2000-06-17 11:01:23 UTC
-+++ pinger.c
-@@ -14,7 +14,9 @@
- #include <netdb.h>
- #include <errno.h>
- #include <stdlib.h>
-+#if ! (defined __FreeBSD__ || defined __DragonFly__)
- #include <malloc.h>
-+#endif
- #include <unistd.h>
- #include "list.h"
- #include "config.h"
diff --git a/net/wmnetmon/files/patch-pinger.h b/net/wmnetmon/files/patch-pinger.h
deleted file mode 100644
index 6a22b1ab5761..000000000000
--- a/net/wmnetmon/files/patch-pinger.h
+++ /dev/null
@@ -1,22 +0,0 @@
---- pinger.h.orig 1999-07-23 14:08:26 UTC
-+++ pinger.h
-@@ -2,6 +2,7 @@
- #define __PINGER_H__
-
-
-+#include <sys/types.h>
- #include <netinet/in.h>
- #include "list.h"
- #include "config.h"
-@@ -47,9 +48,11 @@
- #define UDP_DPORT dest
- #endif
-
-+#if ! (defined __FreeBSD__ || defined __DragonFly__)
- #if ! (defined(__GLIBC__) && (__GLIBC__ >= 2))
- #define inet_ntoa(x) inet_ntoa(*((struct in_addr *)&(x)))
- #endif
-+#endif
-
- #define TIMEOUT_SIZE 55
-
diff --git a/net/wmnetmon/files/patch-tcpmonitor.c b/net/wmnetmon/files/patch-tcpmonitor.c
deleted file mode 100644
index faff35a5a293..000000000000
--- a/net/wmnetmon/files/patch-tcpmonitor.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- tcpmonitor.c.orig 1999-07-23 13:58:24 UTC
-+++ tcpmonitor.c
-@@ -12,7 +12,9 @@
- #include <sys/time.h>
- #include <arpa/inet.h>
- #include <stdlib.h>
-+#if ! (defined __FreeBSD__ || defined __DragonFly__)
- #include <malloc.h>
-+#endif
- #include <fcntl.h>
- #include <errno.h>
- #include "config.h"
-@@ -51,7 +53,7 @@ int tcp_isalive(pinger_host *h)
- if (debug)
- fprintf(stderr,"trying to connect (tcp) to port %d at %s...\n", h->tcpport,
- inet_ntoa(h->tcpsock->sin_addr));
-- if (connect(h->tcp_socket, (struct sockaddr_in*)h->tcpsock,
-+ if (connect(h->tcp_socket, (struct sockaddr*)h->tcpsock,
- sizeof(struct sockaddr_in))<0)
- switch(errno) {
- case EISCONN: /* Common.. reported by lots of users
diff --git a/net/wmnetmon/pkg-descr b/net/wmnetmon/pkg-descr
deleted file mode 100644
index c226de210ba0..000000000000
--- a/net/wmnetmon/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-This application uses an ICMP ping/reply scheme to periodically poll a number
-of interfaces. The results are displayed as a matrix of leds, that are green
-if the interface is alive, yellow if it did not respond once, and flashing red
-if it keeps not responding.
-
-You can easily check which system corresponds to each led by pointing the mouse
-over the leds.
-
-It is intended to be run from the WindowMaker dock, and it can monitor up to
-63 interfaces.
-
-WWW: http://freshmeat.net/projects/wmnetmon/?topic_id=876%2C152