Commit d7fc327b authored by Rene Ladan's avatar Rene Ladan
Browse files

net/jicmp6: Remove expired port

2026-07-28 net/jicmp6: several years behind on upstream, no maintainer, moved to https://github.com/OpenNMS/jicmp6
parent e42d4f9d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5510,3 +5510,4 @@ databases/mysql-connector-java51|databases/mysql-connector-j|2026-07-24|Has expi
devel/log4j|devel/apache-log4j2|2026-07-24|Has expired: EOL since 2015, superseded by devel/apache-log4j2; https://news.apache.org/foundation/entry/apache_logging_services_project_announces
devel/apache-commons-configuration||2026-07-26|Has expired: 'The 1.x codebase no longer receives updates. Denial of service issues...', no maintainer, no users in the ports tree, https://commons.apache.org/proper/commons-configuration/#Commons_Configuration_1.x_and_2.x
databases/sqlitestudio|databases/letos|2026-07-26|Project renamed upstream
net/jicmp6||2026-07-28|Has expired: several years behind on upstream, no maintainer, moved to https://github.com/OpenNMS/jicmp6
+0 −1
Original line number Diff line number Diff line
@@ -308,7 +308,6 @@
    SUBDIR += jcifs
    SUBDIR += jgroups
    SUBDIR += jicmp
    SUBDIR += jicmp6
    SUBDIR += jose
    SUBDIR += jotta-cli
    SUBDIR += jrdesktop

net/jicmp6/Makefile

deleted100644 → 0
+0 −24
Original line number Diff line number Diff line
PORTNAME=	jicmp6
PORTVERSION=	1.2.3
PORTREVISION=	3
CATEGORIES=	net java
MASTER_SITES=	SF/opennms/JICMP6/stable-1.2

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Java native interface (JNI) to ICMPv6
WWW=		https://www.opennms.org/wiki/Jicmp

DEPRECATED=     several years behind on upstream, no maintainer, moved to https://github.com/OpenNMS/jicmp6
EXPIRATION_DATE=        2026-07-28

USES=		java libtool
JAVA_VERSION=	8
JAVA_VENDOR=	openjdk

GNU_CONFIGURE=	yes
CONFIGURE_ENV=	JAVA_HOME=${JAVA_HOME}

PLIST_FILES=	lib/libjicmp6.so \
		share/java/jicmp6.jar

.include <bsd.port.mk>

net/jicmp6/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (jicmp6-1.2.3.tar.gz) = fd7bb78a8d6e0312e987ef44b4f592f0bf5c789cb309a89018d3754353800dd3
SIZE (jicmp6-1.2.3.tar.gz) = 311968
+0 −13
Original line number Diff line number Diff line
--- ICMPv6Socket.c.orig	2011-07-29 19:48:35.000000000 +0100
+++ ICMPv6Socket.c	2012-06-14 17:39:18.640973879 +0100
@@ -57,6 +57,10 @@ Tab Size = 8
 #include "ICMPv6Socket.h"
 #include <jni.h>

+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netinet/icmp6.h>
+
 #ifdef IP_MAXPACKET
 #define MAX_PACKET IP_MAXPACKET
 #else
Loading