aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2023-12-02 12:50:40 +0000
committerRene Ladan <rene@FreeBSD.org>2023-12-02 12:50:40 +0000
commit533b78488b605a37733a761cbdb026ba766ccfa8 (patch)
tree2c16b6ea86366b9903127b8964f6228ba5105e56
parentb924a1a15aaa6e9b0a3b545a6616d7e0180e02a9 (diff)
downloadports-533b78488b605a37733a761cbdb026ba766ccfa8.tar.gz
ports-533b78488b605a37733a761cbdb026ba766ccfa8.zip
sysutils/gtk-imonc: Remove expired port
2023-11-30 sysutils/gtk-imonc: BROKEN for more than 2 years
-rw-r--r--MOVED1
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/gtk-imonc/Makefile33
-rw-r--r--sysutils/gtk-imonc/distinfo2
-rw-r--r--sysutils/gtk-imonc/files/patch-timer.c30
-rw-r--r--sysutils/gtk-imonc/pkg-descr3
-rw-r--r--sysutils/gtk-imonc/pkg-plist14
7 files changed, 1 insertions, 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