Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Dec 2023 12:50:48 GMT
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 533b78488b60 - main - sysutils/gtk-imonc: Remove expired port
Message-ID:  <202312021250.3B2ComFY025199@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=533b78488b605a37733a761cbdb026ba766ccfa8

commit 533b78488b605a37733a761cbdb026ba766ccfa8
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2023-12-02 12:50:40 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2023-12-02 12:50:40 +0000

    sysutils/gtk-imonc: Remove expired port
    
    2023-11-30 sysutils/gtk-imonc: BROKEN for more than 2 years
---
 MOVED                                  |  1 +
 sysutils/Makefile                      |  1 -
 sysutils/gtk-imonc/Makefile            | 33 ---------------------------------
 sysutils/gtk-imonc/distinfo            |  2 --
 sysutils/gtk-imonc/files/patch-timer.c | 30 ------------------------------
 sysutils/gtk-imonc/pkg-descr           |  3 ---
 sysutils/gtk-imonc/pkg-plist           | 14 --------------
 7 files changed, 1 insertion(+), 83 deletions(-)

diff --git a/MOVED b/MOVED
index 03f2da1aad8a..ca046d89b27c 100644
--- a/MOVED
+++ b/MOVED
@@ -8133,3 +8133,4 @@ net/gupnp-dlna||2023-12-02|Has expired: Depends on deprecated port net/gupnp14
 net/gupnp-igd12||2023-12-02|Has expired: Depends on deprecated port net/gupnp14
 irc/irssi-dcc_send_limiter||2023-12-02|Has expired: BROKEN for more than a year
 www/linux-opera||2023-12-02|Has expired: outdated and unsupported version
+sysutils/gtk-imonc||2023-12-02|Has expired: BROKEN for more than 2 years
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 8c60aeaa5bd1..93c3b8b62715 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -531,7 +531,6 @@
     SUBDIR += gstat-rs
     SUBDIR += gstopd
     SUBDIR += gstreamer1-plugins-cdio
-    SUBDIR += gtk-imonc
     SUBDIR += hammer2
     SUBDIR += handlr
     SUBDIR += hardlink
diff --git a/sysutils/gtk-imonc/Makefile b/sysutils/gtk-imonc/Makefile
deleted file mode 100644
index de858a737278..000000000000
--- a/sysutils/gtk-imonc/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-PORTNAME=	gtk-imonc
-PORTVERSION=	0.6.4.1
-PORTREVISION=	17
-CATEGORIES=	sysutils
-MASTER_SITES=	http://stefan-strigler.de/download/
-
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	GTK2-based imond-client to control an on(e) disc fli4l router
-WWW=		http://stefan-strigler.de/gtkimonc/
-
-LICENSE=	GPLv2+
-
-DEPRECATED=	BROKEN for more than 2 years
-EXPIRATION_DATE=	2023-11-30
-BROKEN_FreeBSD_13=	ld: error: duplicate symbol: admin_passwd
-BROKEN_FreeBSD_14=	ld: error: duplicate symbol: admin_passwd
-
-GNU_CONFIGURE=	yes
-USES=		pkgconfig gettext gnome iconv xorg
-USE_GNOME=	gtk20
-USE_XORG=	x11
-CPPFLAGS+=	-I${LOCALBASE}/include
-LIBS+=		-L${LOCALBASE}/lib -lX11
-
-post-patch:
-	@${REINPLACE_CMD} -e \
-		's|/gnome/apps/Internet|/applications|' ${WRKSRC}/Makefile.in
-	@${REINPLACE_CMD} -e \
-		's|/usr/share/pixmaps/||' ${WRKSRC}/gtk-imonc.desktop
-	@${REINPLACE_CMD} -e \
-		's|<endian.h>|<sys/endian.h>|' ${WRKSRC}/src/md5.h
-
-.include <bsd.port.mk>
diff --git a/sysutils/gtk-imonc/distinfo b/sysutils/gtk-imonc/distinfo
deleted file mode 100644
index eed698b9d585..000000000000
--- a/sysutils/gtk-imonc/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (gtk-imonc-0.6.4.1.tar.gz) = 8ed6c13ed7b3fcac08ad9383adeb0b8dfdc4c2ed2ba48ce7d4c6d0a3778c966b
-SIZE (gtk-imonc-0.6.4.1.tar.gz) = 216002
diff --git a/sysutils/gtk-imonc/files/patch-timer.c b/sysutils/gtk-imonc/files/patch-timer.c
deleted file mode 100644
index 62698a6c8b77..000000000000
--- a/sysutils/gtk-imonc/files/patch-timer.c
+++ /dev/null
@@ -1,30 +0,0 @@
---- src/timer.c.orig	Wed Jan 12 12:36:24 2005
-+++ src/timer.c	Thu Feb 17 21:10:06 2005
-@@ -293,14 +293,14 @@
- 				}
- 				else
- 				{
--					tmpbytes = atoll (strtok (NULL, " "));
-+					tmpbytes = strtoll (strtok (NULL, " "), NULL, 10);
- 					ibytes += tmpbytes;
- 					row[i] = get_bytes (tmpbytes,
- 							    ibytebuf);
- 				}
- 				break;
- 			case 9:	/* OBytes */
--				tmpbytes = atoll (strtok (NULL, " "));
-+				tmpbytes = strtoll (strtok (NULL, " "), NULL, 10);
- 				obytes += tmpbytes;
- 				row[i] = get_bytes (tmpbytes, obytebuf);
- 				break;
-@@ -1165,8 +1165,8 @@
- 		}
- 		else
- 		{
--			gtk_clist_set_text (GTK_CLIST (clist), j, 3, get_bytes(atoll(strtok(get_answer (fd)," ")), buf));
--			gtk_clist_set_text (GTK_CLIST (clist), j, 4, get_bytes(atoll(strtok(NULL, " ")), buf));
-+			gtk_clist_set_text (GTK_CLIST (clist), j, 3, get_bytes(strtoll(strtok(get_answer (fd)," "), NULL, 10), buf));
-+			gtk_clist_set_text (GTK_CLIST (clist), j, 4, get_bytes(strtoll(strtok(NULL, " "), NULL, 10), buf));
- 		}
- 
- 		send_command (fd, "online-time pppoe");
diff --git a/sysutils/gtk-imonc/pkg-descr b/sysutils/gtk-imonc/pkg-descr
deleted file mode 100644
index d61868174d2a..000000000000
--- a/sysutils/gtk-imonc/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-GTK-Imonc is a GTK2-based imond-client to control an on(e) disc fli4l
-router. You can dial/hangup the connection, show status information
-(traffic, cpu), shutdown/reboot and even remotely update the router.
diff --git a/sysutils/gtk-imonc/pkg-plist b/sysutils/gtk-imonc/pkg-plist
deleted file mode 100644
index b2207c33bea0..000000000000
--- a/sysutils/gtk-imonc/pkg-plist
+++ /dev/null
@@ -1,14 +0,0 @@
-bin/gtk-imonc
-share/applications/gtk-imonc.desktop
-%%DATADIR%%/pixmaps/docklet-inactive.png
-%%DATADIR%%/pixmaps/docklet-offline.png
-%%DATADIR%%/pixmaps/docklet-online.png
-%%DATADIR%%/pixmaps/gtk-imonc.png
-%%DATADIR%%/pixmaps/offline.png
-%%DATADIR%%/pixmaps/offline.xpm
-%%DATADIR%%/pixmaps/online.png
-%%DATADIR%%/pixmaps/online.xpm
-%%DATADIR%%/pixmaps/reboot.png
-%%DATADIR%%/pixmaps/shutdown.png
-share/locale/de/LC_MESSAGES/gtk-imonc.mo
-share/pixmaps/gtk-imonc.png



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202312021250.3B2ComFY025199>