1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00

cleanup: Remove expired ports:

2021-08-19 sysutils/graid5: Module contains subtile errors and is obsolete by ZFS raidz. Consider migrating to ZFS.
2021-08-19 x11-wm/gcompmgr: Abandonware since 2005, using discontinued libraries
2021-08-19 irc/lostirc: Abandonware since 2005, dependens on discontinued libraries
This commit is contained in:
Rene Ladan 2021-08-21 22:21:51 +02:00
parent cafb4e2c9e
commit bc7ca40fff
24 changed files with 3 additions and 268 deletions

3
MOVED
View File

@ -16469,3 +16469,6 @@ multimedia/py-mlt|multimedia/py-mlt6|2021-07-30|Moved to a versioned directory t
net/openldap24-sasl-client|net/openldap24-client|2021-08-01|SASL is always enabled for OpenLDAP
textproc/py-python-language-server|textproc/py-python-lsp-server|2021-08-01|Has expired: Upstream forked and replaced by py-python-lsp-server
games/ponscripter-sekai|games/ponscripter-07th-mod|2021-08-13|Switch to active fork
sysutils/graid5||2021-08-21|Has expired: Module contains subtile errors and is obsolete by ZFS raidz. Consider migrating to ZFS.
x11-wm/gcompmgr||2021-08-21|Has expired: Abandonware since 2005, using discontinued libraries
irc/lostirc||2021-08-21|Has expired: Abandonware since 2005, dependens on discontinued libraries

View File

@ -54,7 +54,6 @@
SUBDIR += konversation
SUBDIR += kvirc
SUBDIR += libircclient
SUBDIR += lostirc
SUBDIR += miau
SUBDIR += muh
SUBDIR += ngircd

View File

@ -1,34 +0,0 @@
# Created by: Juan Salaverria <rael@vectorstar.net>
PORTNAME= lostirc
PORTVERSION= 0.4.6
PORTREVISION= 15
CATEGORIES= irc
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple and minimal IRC client for X
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
DEPRECATED= Abandonware since 2005, dependens on discontinued libraries
EXPIRATION_DATE= 2021-08-19
LIB_DEPENDS= libgtkmm-2.4.so:x11-toolkits/gtkmm24
USES= compiler:c++11-lang gettext gnome pathfix pkgconfig
USE_CXXSTD= c++11
USE_GNOME= gnomeprefix
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-kde
OPTIONS_DEFINE= DOCS
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in AUTHORS ChangeLog TODO README
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (lostirc-0.4.6.tar.gz) = 50f07178d65fdbed1e85980af039cdf251ae044fee639aaeb28e3949ef6e7edd
SIZE (lostirc-0.4.6.tar.gz) = 622926

View File

@ -1,11 +0,0 @@
--- src/gtkmm/MainWindow.cpp.orig 2017-04-05 11:24:58 UTC
+++ src/gtkmm/MainWindow.cpp
@@ -485,7 +485,7 @@ void MainWindow::openAboutWindow()
if (_aboutwin.get()) {
_aboutwin->present();
} else {
- std::auto_ptr<Gtk::MessageDialog> dialog(new Gtk::MessageDialog(_("LostIRC "VERSION), false, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, false));
+ std::auto_ptr<Gtk::MessageDialog> dialog(new Gtk::MessageDialog(_("LostIRC " VERSION), false, Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK, false));
dialog->signal_response().connect(sigc::mem_fun(*this, &MainWindow::hideAboutWindow));
dialog->show();

View File

@ -1,16 +0,0 @@
--- src/gtkmm/TextWidget.cpp.orig 2017-04-05 11:26:59 UTC
+++ src/gtkmm/TextWidget.cpp
@@ -210,11 +210,11 @@ void TextWidget::insertText(const TextProperties& tp,
std::vector< Glib::RefPtr<Gtk::TextTag> > tags;
Glib::RefPtr<Gtk::TextTag> fg = buffer->get_tag_table()->lookup(Glib::ustring("f")+crop(tp.fgnumber));
- if (fg == 0)
+ if (!fg)
fg = buffer->get_tag_table()->lookup("f0");
Glib::RefPtr<Gtk::TextTag> bg = buffer->get_tag_table()->lookup(Glib::ustring("b")+crop(tp.bgnumber));
- if (bg == 0)
+ if (!bg)
bg = buffer->get_tag_table()->lookup("b0");
tags.push_back(fg);

View File

@ -1,17 +0,0 @@
--- src/libirc/DCC.cpp.ori Sat Feb 7 17:25:51 2004
+++ src/libirc/DCC.cpp Sat Feb 7 17:27:32 2004
@@ -16,12 +16,13 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
+#include <sys/types.h>
+
#ifndef WIN32
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#else
-#include <sys/types.h>
#include <sys/stat.h>
#define stat _stat
#endif

View File

@ -1,11 +0,0 @@
--- src/libirc/Parser.cpp.orig Sat May 31 09:25:44 2003
+++ src/libirc/Parser.cpp Mon Jul 7 00:37:53 2003
@@ -681,7 +681,7 @@
ss >> time;
long date = std::atol(time.c_str());
- time = std::ctime(&date);
+ time = std::ctime((const time_t *)&date);
Channel *c = _conn->findChannel(chan);
assert(c);

View File

@ -1,11 +0,0 @@
--- src/libirc/ServerConnection.cpp.orig 2017-04-05 11:23:15 UTC
+++ src/libirc/ServerConnection.cpp
@@ -322,7 +322,7 @@ bool ServerConnection::sendVersion(const ustring& to)
ustring r("");
ustring m("");
#endif
- ustring vstring("LostIRC "VERSION" on " + s + " " + r + " [" + m + "]");
+ ustring vstring("LostIRC " VERSION" on " + s + " " + r + " [" + m + "]");
ustring msg("NOTICE " + to + " :\001VERSION " + vstring + "\001\r\n");
return _socket.send(msg);

View File

@ -1,14 +0,0 @@
LostIRC is an IRC client for X, written in C++ using gtkmm as a widget set.
The goal of the first stable version, is to make a simple, keyboard
controlled IRC application with basic features implemented.
Key features:
* Simple and minimal client, where the keyboard can be used almost
exclusively
* Tab-completion for both nicks and commands
* Autojoin servers and set which IRC commands to execute on connect
* Multi-server support
* DCC SEND support
WWW: http://lostirc.sourceforge.net/

View File

@ -1,10 +0,0 @@
bin/lostirc
man/man1/lostirc.1.gz
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
%%PORTDOCS%%%%DOCSDIR%%/README
%%PORTDOCS%%%%DOCSDIR%%/TODO
share/applications/lostirc.desktop
share/pixmaps/lostirc.png
share/locale/da/LC_MESSAGES/lostirc.mo
share/locale/fr/LC_MESSAGES/lostirc.mo

View File

@ -475,7 +475,6 @@
SUBDIR += gotop
SUBDIR += gpart
SUBDIR += graffer
SUBDIR += graid5
SUBDIR += graveman
SUBDIR += graylog
SUBDIR += grub2-bhyve

View File

@ -1,36 +0,0 @@
# Created by: Lev Serebryakov <lev@FreeBSD.org>
PORTNAME= graid5
PORTVERSION= ${MAINVERSION}.${VERSIONDATE}
CATEGORIES= sysutils
MASTER_SITES= http://lev.serebryakov.spb.ru/download/graid5/
MAINTAINER= lev@FreeBSD.org
COMMENT= RAID5 geom class
LICENSE= BSD2CLAUSE
BROKEN_FreeBSD_13= g_raid5.c:1567:2: error: too few arguments to function call, expected at least 3, have 1
BROKEN_FreeBSD_14= g_raid5.c:1567:2: error: too few arguments to function call, expected at least 3, have 1
DEPRECATED=Module contains subtile errors and is obsolete by ZFS raidz. Consider migrating to ZFS.
EXPIRATION_DATE=2021-08-19
MAINVERSION=1.3
VERSIONDATE=20140711.62
MAKE_ENV+= KMODDIR=${KMODDIR} SRC_BASE=${SRC_BASE}
USES= tar:bzip2 kmod uidfix
.include <bsd.port.pre.mk>
.if !exists(${SRC_BASE}/sbin/geom/Makefile)
IGNORE= requires sbin source files
.endif
pre-install:
${MKDIR} ${STAGEDIR}/lib/geom
${MKDIR} ${STAGEDIR}/sbin
.include <bsd.port.post.mk>

View File

@ -1,2 +0,0 @@
SHA256 (graid5-1.3.20140711.62.tar.bz2) = 52c93e4c365e8ee845ef2c476770a708ffec69f95e9fb618699b95ccf5e137e2
SIZE (graid5-1.3.20140711.62.tar.bz2) = 28526

View File

@ -1,8 +0,0 @@
FreeBSD GEOM class for RAID5.
This is RAID5 geom class, originally written by
Arne Worner <arne_woerner@yahoo.com>.
Now maintained by Lev Serebryakov <lev@FreeBSD.org>
WWW: http://lev.serebryakov.spb.ru/download/graid5/

View File

@ -1,4 +0,0 @@
man/man8/graid5.8.gz
/%%KMODDIR%%/geom_raid5.ko
/lib/geom/geom_raid5.so
/sbin/graid5

View File

@ -40,7 +40,6 @@
SUBDIR += fvwm2
SUBDIR += fvwm3
SUBDIR += gamescope
SUBDIR += gcompmgr
SUBDIR += herbstluftwm
SUBDIR += hikari
SUBDIR += hs-xmonad

View File

@ -1,40 +0,0 @@
# Created by: UMENO Takashi
PORTNAME= gcompmgr
PORTVERSION= 0.21
PORTREVISION= 13
CATEGORIES= x11-wm
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= GNOME interface to xcompmgr
DEPRECATED= Abandonware since 2005, using discontinued libraries
EXPIRATION_DATE= 2021-08-19
RUN_DEPENDS= xcompmgr:x11-wm/xcompmgr
GNU_CONFIGURE= yes
LIBS+= -L${LOCALBASE}/lib -lX11
USES= compiler:c++11-lang autoreconf gnome libtool pkgconfig xorg
USE_CXXSTD= c++11
USE_GNOME= gtkmm24
USE_XORG= x11
DESKTOP_ENTRIES="gcompmgr" \
"Configure window effects" \
"" \
"gcompmgr" \
"DesktopSettings;Settings;GTK;" \
true
OPTIONS_DEFINE= DOCS
post-patch:
@${RM} ${WRKSRC}/INSTALL
@${REINPLACE_CMD} -e '/^CXXFLAGS=""/d' ${WRKSRC}/configure.in
@${REINPLACE_CMD} -e 's|connect(SigC::slot|connect(sigc::mem_fun|g ; \
s|#include <sigc++\/compatibility\.h>||g' \
${WRKSRC}/src/*.cc
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (gcompmgr-0.21.tar.gz) = 50b68e830248657a1123526b53191de024475b96679361bcff6f404c26548fa3
SIZE (gcompmgr-0.21.tar.gz) = 651448

View File

@ -1,17 +0,0 @@
--- Makefile.am.orig 2005-06-20 15:46:44 UTC
+++ Makefile.am
@@ -5,13 +5,11 @@
SUBDIRS = src
-gcompmgrdocdir = ${prefix}/doc/gcompmgr
+gcompmgrdocdir = ${prefix}/share/doc/gcompmgr
gcompmgrdoc_DATA = \
README\
- COPYING\
AUTHORS\
ChangeLog\
- INSTALL\
NEWS\
TODO

View File

@ -1,10 +0,0 @@
--- src/params.cc.orig 2019-07-01 08:27:28 UTC
+++ src/params.cc
@@ -22,6 +22,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "params.h"
+#include <cstring>
#define BUFSIZE 1000
params::params()

View File

@ -1,10 +0,0 @@
--- src/stdxinc.cc.orig 2019-07-01 08:18:45 UTC
+++ src/stdxinc.cc
@@ -7,6 +7,7 @@
****************************************************************************/
#include "stdxinc.h"
+#include <cstring>
#define XC_pirate 88
char *Get_Display_Name(int *pargc, char **argv)

View File

@ -1,4 +0,0 @@
gcompmgr is a GNOME interface to xcompmgr. Through xcompmgr it allows you to
use your graphics card to create effects in your GNOME window manager.
WWW: https://sourceforge.net/projects/gcompmgr/

View File

@ -1,6 +0,0 @@
bin/gcompmgr
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
%%PORTDOCS%%%%DOCSDIR%%/NEWS
%%PORTDOCS%%%%DOCSDIR%%/README
%%PORTDOCS%%%%DOCSDIR%%/TODO