diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-09-22 06:26:46 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-09-22 06:26:46 +0000 |
commit | 8a4b511e447365a50f15a0b42f8f653b4c8253ef (patch) | |
tree | f4c9e95ca88ef8dbc75fb2f3e8510d3e56700428 /news | |
parent | 78943273031a472dbfe5fe4a962513d34ab45831 (diff) |
Notes
Diffstat (limited to 'news')
25 files changed, 0 insertions, 360 deletions
diff --git a/news/Makefile b/news/Makefile index d8f97db6d145..4c322394677c 100644 --- a/news/Makefile +++ b/news/Makefile @@ -3,7 +3,6 @@ COMMENT = Network news - SUBDIR += PicMonger SUBDIR += atp SUBDIR += aub SUBDIR += brag @@ -39,7 +38,6 @@ SUBDIR += husky-smapi-devel SUBDIR += husky-sqpack SUBDIR += ifmail - SUBDIR += ija SUBDIR += inn SUBDIR += klibido SUBDIR += knews diff --git a/news/PicMonger/Makefile b/news/PicMonger/Makefile deleted file mode 100644 index c51bd23ebb18..000000000000 --- a/news/PicMonger/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: PicMonger -# Date created: 23 July 2000 -# Whom: Donald Burr <dburr@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= PicMonger -PORTVERSION= 0.9.6 -PORTREVISION= 9 -CATEGORIES= news graphics -MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME}/${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= An automated USENET (NNTP) picture decoding client - -DEPRECATED= Abandonware -EXPIRATION_DATE= 2011-09-01 - -LIB_DEPENDS= gtkmm-1.2.2:${PORTSDIR}/x11-toolkits/gtkmm12 -RUN_DEPENDS= mpack:${PORTSDIR}/converters/mpack - -USE_XORG= x11 -USE_GMAKE= yes -USE_GNOME= imlib -GNU_CONFIGURE= yes - -.include <bsd.port.mk> diff --git a/news/PicMonger/distinfo b/news/PicMonger/distinfo deleted file mode 100644 index 1912424f3e05..000000000000 --- a/news/PicMonger/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (PicMonger-0.9.6.tar.gz) = 5eef38359ba339f3d6f32085ef14fcdbdbb2f5af33a03a928b0d5548ba54408d -SIZE (PicMonger-0.9.6.tar.gz) = 241237 diff --git a/news/PicMonger/files/patch-ErrorLogger.cpp b/news/PicMonger/files/patch-ErrorLogger.cpp deleted file mode 100644 index aa4f74e9ecdf..000000000000 --- a/news/PicMonger/files/patch-ErrorLogger.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- ErrorLogger.cpp.orig Tue Mar 14 23:43:02 2000 -+++ ErrorLogger.cpp Fri Dec 1 22:27:20 2006 -@@ -28,6 +28,8 @@ - using std::ofstream; - using std::string; - using std::list; -+using std::ios; -+using std::endl; - - ErrorLogger* ErrorLogger::instance = 0; - diff --git a/news/PicMonger/files/patch-Exceptions.cpp b/news/PicMonger/files/patch-Exceptions.cpp deleted file mode 100644 index d50037cba082..000000000000 --- a/news/PicMonger/files/patch-Exceptions.cpp +++ /dev/null @@ -1,53 +0,0 @@ ---- Exceptions.cpp.orig Tue Mar 28 02:00:12 2000 -+++ Exceptions.cpp Fri Dec 1 22:24:08 2006 -@@ -29,8 +29,8 @@ - - /////////////////////////////////////////////////////////////////////////////////// - --Basic::Basic( const string& location = "Unknown", -- const string& condition = "Unknown" ) -+Basic::Basic( const string& location, -+ const string& condition ) - : abort(false), loc( location ), cond( condition ) - { - } -@@ -65,8 +65,8 @@ - - //////////////////////////////////////////////////////////////////////////////////// - --Fatal::Fatal( const string& location = "Unknown", -- const string& condition = "Fatal Error" ) -+Fatal::Fatal( const string& location, -+ const string& condition ) - : Basic( location, condition ) - { - } -@@ -81,7 +81,7 @@ - - //////////////////////////////////////////////////////////////////////////////////// - --NullPointer::NullPointer( const string& location = "Unknown" ) -+NullPointer::NullPointer( const string& location ) - : Fatal( location, "Attempted to dereference or access a null pointer." ) - {} - -@@ -94,8 +94,8 @@ - } - - //////////////////////////////////////////////////////////////////////////////////// --FileAccess::FileAccess( const string& location = "Unknown", -- const string& filename = "Filename Not Specified" ) -+FileAccess::FileAccess( const string& location, -+ const string& filename ) - : Basic( location, "File Not Found or Access Denied" ), fname( filename ) - {} - -@@ -160,7 +160,7 @@ - //////////////////////////////////////////////////////////////////////////////////// - - TimeOut::TimeOut( const string& location, HtmlGenerator *htmlgen, -- const string& pending_io = "(Err During Read)" ) -+ const string& pending_io ) - : Basic( location, "Socket I/O Timed Out" ), pend_io( pending_io ), - p_htgen( htmlgen ) - {} diff --git a/news/PicMonger/files/patch-FileTypeState.cpp b/news/PicMonger/files/patch-FileTypeState.cpp deleted file mode 100644 index 1b39e8d6c9ca..000000000000 --- a/news/PicMonger/files/patch-FileTypeState.cpp +++ /dev/null @@ -1,14 +0,0 @@ ---- FileTypeState.cpp.orig Tue Apr 18 21:22:46 2000 -+++ FileTypeState.cpp Fri Dec 1 22:45:01 2006 -@@ -21,6 +21,11 @@ - #include <fstream> - #include <stdlib.h> // need getenv() - -+using std::ofstream; -+using std::ifstream; -+using std::ios; -+using std::flush; -+ - // Implemented as a Singleton to simplify access from both filetype dialog and - // newsscanner without having to maintain references to each other - diff --git a/news/PicMonger/files/patch-FilenameCleaner.cpp b/news/PicMonger/files/patch-FilenameCleaner.cpp deleted file mode 100644 index f489c1e4a840..000000000000 --- a/news/PicMonger/files/patch-FilenameCleaner.cpp +++ /dev/null @@ -1,14 +0,0 @@ ---- FilenameCleaner.cpp.orig Tue Apr 11 12:01:47 2000 -+++ FilenameCleaner.cpp Fri Dec 1 22:46:08 2006 -@@ -5,8 +5,11 @@ - #include "FileTypeState.h" // need enum FileTypes - #include <ctype.h> // need tolower() - #include <strstream> -+#include <iostream> - - using std::strstream; -+using std::cerr; -+using std::endl; - - FilenameCleaner::FilenameCleaner() - { diff --git a/news/PicMonger/files/patch-GroupState.cpp b/news/PicMonger/files/patch-GroupState.cpp deleted file mode 100644 index a52901538a40..000000000000 --- a/news/PicMonger/files/patch-GroupState.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- GroupState.cpp.orig Tue Mar 14 23:43:08 2000 -+++ GroupState.cpp Fri Dec 1 22:47:05 2006 -@@ -24,6 +24,9 @@ - #include <stdlib.h> // need getenv - - using std::string; -+using std::ifstream; -+using std::ofstream; -+using std::ios; - - GroupState::GroupState(const string& groupname, const string& max_msg_id) - : group(groupname) diff --git a/news/PicMonger/files/patch-GroupState.h b/news/PicMonger/files/patch-GroupState.h deleted file mode 100644 index ccba1d1e0dd1..000000000000 --- a/news/PicMonger/files/patch-GroupState.h +++ /dev/null @@ -1,10 +0,0 @@ ---- GroupState.h.orig Tue Mar 14 23:43:08 2000 -+++ GroupState.h Fri Dec 1 22:47:53 2006 -@@ -26,6 +26,7 @@ - - using std::string; - using std::map; -+using std::less; - - typedef map< string, string, less<string> > GroupStateData; - typedef GroupStateData::value_type StatePair; diff --git a/news/PicMonger/files/patch-HtmlPage.cpp b/news/PicMonger/files/patch-HtmlPage.cpp deleted file mode 100644 index 318c46ee8785..000000000000 --- a/news/PicMonger/files/patch-HtmlPage.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- HtmlPage.cpp.orig Tue Apr 4 01:59:24 2000 -+++ HtmlPage.cpp Fri Dec 1 22:34:09 2006 -@@ -26,6 +26,8 @@ - #endif - - using std::string; -+using std::ios; -+using std::endl; - - HtmlPage::HtmlPage( const string& path, - const string& _filename, diff --git a/news/PicMonger/files/patch-HtmlPage.h b/news/PicMonger/files/patch-HtmlPage.h deleted file mode 100644 index 1709af85b89b..000000000000 --- a/news/PicMonger/files/patch-HtmlPage.h +++ /dev/null @@ -1,10 +0,0 @@ ---- HtmlPage.h.orig Wed Mar 22 01:20:48 2000 -+++ HtmlPage.h Fri Dec 1 22:33:36 2006 -@@ -27,6 +27,7 @@ - #include "Exceptions.h" - - using std::string; -+using std::ofstream; - - class HtmlPage { - diff --git a/news/PicMonger/files/patch-InetSocket.cpp b/news/PicMonger/files/patch-InetSocket.cpp deleted file mode 100644 index 296f3cd0c4b4..000000000000 --- a/news/PicMonger/files/patch-InetSocket.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- InetSocket.cpp.orig Tue Mar 14 23:43:09 2000 -+++ InetSocket.cpp Fri Dec 1 22:20:58 2006 -@@ -31,7 +31,7 @@ - #include <errno.h> - #include <unistd.h> - --InetSocket::InetSocket(int type=SOCK_STREAM, int protocol=0) -+InetSocket::InetSocket(int type, int protocol) - : type_(type), protocol_(protocol) - { - local_fd = socket( PF_INET, type_, protocol_ ); -@@ -58,7 +58,7 @@ - return result; - } - --int InetSocket::s_bind( int port, const char *dotquad = (const char *)0) -+int InetSocket::s_bind( int port, const char *dotquad) - { - // construct local address to which we want our unnamed socket bound - if (!dotquad) diff --git a/news/PicMonger/files/patch-NewsScanner.cpp b/news/PicMonger/files/patch-NewsScanner.cpp deleted file mode 100644 index 9d1e4daf9d55..000000000000 --- a/news/PicMonger/files/patch-NewsScanner.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- NewsScanner.cpp.orig Fri Jul 14 12:58:22 2000 -+++ NewsScanner.cpp Fri Dec 1 22:19:44 2006 -@@ -58,7 +58,7 @@ - - - NewsScanner::NewsScanner(NewsScannerView *nsv, const char* saddr, -- const char* ng, ScanOrder so=NS_FORWARD) -+ const char* ng, ScanOrder so) - - : p_NSV(nsv), so_(so), htmlgen("."), p_htgen( 0 ), - serv_addr( saddr ), serv_port( 119 ), group( ng ), diff --git a/news/PicMonger/files/patch-OptionsTab.cpp b/news/PicMonger/files/patch-OptionsTab.cpp deleted file mode 100644 index 308ef54fc0b8..000000000000 --- a/news/PicMonger/files/patch-OptionsTab.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- OptionsTab.cpp.orig Tue Apr 11 20:40:30 2000 -+++ OptionsTab.cpp Fri Dec 1 22:35:20 2006 -@@ -8,6 +8,8 @@ - #include <iostream> - - using std::cerr; -+using std::string; -+using std::endl; - - OptionsTab::OptionsTab() - : Gtk::Table( 4, 1, true ) diff --git a/news/PicMonger/files/patch-aa b/news/PicMonger/files/patch-aa deleted file mode 100644 index 9a7baa1453c9..000000000000 --- a/news/PicMonger/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- InetSocket.h.old Sun Jul 23 01:16:39 2000 -+++ InetSocket.h Sun Jul 23 01:16:49 2000 -@@ -24,6 +24,9 @@ - #ifndef _INETSOCKET_H - #define _INETSOCKET_H - -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#endif - #include <sys/socket.h> - #include <netinet/in.h> - #include <arpa/inet.h> diff --git a/news/PicMonger/files/patch-ab b/news/PicMonger/files/patch-ab deleted file mode 100644 index 7cfb55484986..000000000000 --- a/news/PicMonger/files/patch-ab +++ /dev/null @@ -1,12 +0,0 @@ ---- HtmlGenerator.h.old Sun Jul 23 01:19:44 2000 -+++ HtmlGenerator.h Sun Jul 23 01:19:46 2000 -@@ -28,6 +28,9 @@ - #include <list> - #include <fstream> - #include "Exceptions.h" -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#endif - #include "PreviewPage.h" - - class HtmlGenerator diff --git a/news/PicMonger/files/patch-ac b/news/PicMonger/files/patch-ac deleted file mode 100644 index 478c2372d8b1..000000000000 --- a/news/PicMonger/files/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ ---- PreviewPage.cpp.old Sun Jul 23 01:21:56 2000 -+++ PreviewPage.cpp Sun Jul 23 01:21:58 2000 -@@ -18,6 +18,9 @@ - // along with this program; if not, write to the Free Software - // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#endif - #include "PreviewPage.h" - #include "Thumbnail.h" - #include "HtmlOptionState.h" diff --git a/news/PicMonger/files/patch-ad b/news/PicMonger/files/patch-ad deleted file mode 100644 index 3dc0f0590712..000000000000 --- a/news/PicMonger/files/patch-ad +++ /dev/null @@ -1,18 +0,0 @@ ---- HtmlOptionState.cpp.orig Fri Jul 14 12:58:22 2000 -+++ HtmlOptionState.cpp Fri Dec 1 22:39:45 2006 -@@ -17,11 +17,15 @@ - // along with this program; if not, write to the Free Software - // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#endif - #include "HtmlOptionState.h" - #include <fstream> - - using std::ifstream; - using std::ofstream; -+using std::ios; - - HtmlOptionState* HtmlOptionState::instance = 0; - HtmlOptionState* HtmlOptionState::Instance() diff --git a/news/PicMonger/files/patch-ae b/news/PicMonger/files/patch-ae deleted file mode 100644 index 2296661f5608..000000000000 --- a/news/PicMonger/files/patch-ae +++ /dev/null @@ -1,12 +0,0 @@ ---- HtmlOptions.cpp.old Sun Jul 23 01:54:30 2000 -+++ HtmlOptions.cpp Sun Jul 23 01:54:42 2000 -@@ -18,6 +18,9 @@ - // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - #include "HtmlOptions.h" -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#endif - #include "HtmlOptionState.h" - #include "Exceptions.h" - diff --git a/news/PicMonger/files/patch-imlib.h b/news/PicMonger/files/patch-imlib.h deleted file mode 100644 index 43ff347f8ee8..000000000000 --- a/news/PicMonger/files/patch-imlib.h +++ /dev/null @@ -1,11 +0,0 @@ ---- imlib.h.orig Sun Apr 23 00:11:09 2000 -+++ imlib.h Fri Dec 1 22:18:13 2006 -@@ -29,7 +29,7 @@ - - #include <gdk--.h> - #include <gdk_imlib.h> -- -+using std::string; - class Gdk_Imlib - { - public: diff --git a/news/PicMonger/pkg-descr b/news/PicMonger/pkg-descr deleted file mode 100644 index c4b7f332d2c7..000000000000 --- a/news/PicMonger/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -PicMonger is an automated NNTP (Usenet News) client. In short, you point it -at your news server, select a group, and it scans the available (and not -previously scanned) posts for UUencoded or MIME base64-encoded binaries -(e.g. a JPEG image). When a binary is found, it is automatically decoded -back to its original form. If desired, PicMonger can also create thumbnail -preview pages, viewable in any web browser. - -Features: -* Intuitive GUI design -* Automatic customizable HTML thumbnail preview page generation -* Thumbnails maintain same aspect ratio as the original, within a size - constraint specified by the user -* Inter-session group memory (resumes scanning a newsgroup where you left off) -* Inter-session options memory (remembers all of your customized settings) -* GUI-based mangement of server and newsgroup lists -* Fixes filenames to be ext2fs (Linux/Unix) friendly before they are written -* Screens files and decodes only the file types you select -* Easy installation (uses GNU autoconf/automake) -* Error logging for easy troubleshooting (rarely an issue) -* Distributed under the GNU GPL - -WWW: http://PicMonger.sourceforge.net/ diff --git a/news/PicMonger/pkg-plist b/news/PicMonger/pkg-plist deleted file mode 100644 index 698eef39b54d..000000000000 --- a/news/PicMonger/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -bin/picmonger -share/PicMonger/pmlogo.xpm -share/PicMonger/add.xpm -share/PicMonger/del.xpm -share/PicMonger/pmlogo_big.jpg -share/PicMonger/db_rd.xpm -@dirrm share/PicMonger diff --git a/news/ija/Makefile b/news/ija/Makefile deleted file mode 100644 index d915f2e68d79..000000000000 --- a/news/ija/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# ex:ts=8 -# New ports collection makefile for: ija -# Date created: Feb 17, 2001 -# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ija -PORTVERSION= 0.4.15 -CATEGORIES= news -MASTER_SITES= http://wildspark.com/asher/ija/ -EXTRACT_SUFX= .gz - -MAINTAINER= ports@FreeBSD.org -COMMENT= An interactive command line frontend of Deja - -DEPRECATED= BROKEN for more than 6 month -EXPIRATION_DATE= 2011-09-01 - -RUN_DEPENDS= ${SITE_PERL}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ - ${SITE_PERL}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww - -BROKEN= checksum mismatch - -USE_PERL5= yes - -NO_WRKSUBDIR= yes -NO_BUILD= yes -PLIST_FILES= bin/ija - -do-extract: - @${MKDIR} ${WRKDIR} - @${GUNZIP_CMD} -c ${DISTDIR}/${DISTFILES} > ${WRKDIR}/${PORTNAME} - -do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/news/ija/distinfo b/news/ija/distinfo deleted file mode 100644 index 8758b718cd55..000000000000 --- a/news/ija/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ija-0.4.15.gz) = ae4cce24a692c2065e8f94bd0c4a1b821405dc5f894ad0673652c9d0d1395d98 -SIZE (ija-0.4.15.gz) = 4301 diff --git a/news/ija/pkg-descr b/news/ija/pkg-descr deleted file mode 100644 index 3ee80341ea81..000000000000 --- a/news/ija/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Ija is an interactive command line program that lets you access -Deja (formerly Dejanews) without the web interface. - -WWW: http://wildspark.com/asher/ija/ |