summaryrefslogtreecommitdiff
path: root/irc
diff options
context:
space:
mode:
authorMatthew Hunt <mph@FreeBSD.org>2002-06-17 19:04:42 +0000
committerMatthew Hunt <mph@FreeBSD.org>2002-06-17 19:04:42 +0000
commitb24ff540ad404d2e797d75b215d4f240b78c1e89 (patch)
treea16214e4a4e24411261d236c52b27496420776fb /irc
parentadd rhtvision 1.1.4 (diff)
Remove "yagirc" port. It is BROKEN and appears no longer to be
maintained by the author (e.g. we were hosting the distfile ourselves).
Notes
Notes: svn path=/head/; revision=61432
Diffstat (limited to 'irc')
-rw-r--r--irc/Makefile1
-rw-r--r--irc/yagirc/Makefile28
-rw-r--r--irc/yagirc/distinfo2
-rw-r--r--irc/yagirc/files/patch-aa22
-rw-r--r--irc/yagirc/files/patch-ab10
-rw-r--r--irc/yagirc/files/patch-ac45
-rw-r--r--irc/yagirc/files/patch-ad10
-rw-r--r--irc/yagirc/pkg-comment1
-rw-r--r--irc/yagirc/pkg-descr2
-rw-r--r--irc/yagirc/pkg-plist25
10 files changed, 0 insertions, 146 deletions
diff --git a/irc/Makefile b/irc/Makefile
index 3749767d2888..3f971e51d5a0 100644
--- a/irc/Makefile
+++ b/irc/Makefile
@@ -57,7 +57,6 @@
SUBDIR += xaric
SUBDIR += xchat
SUBDIR += xchat-devel
- SUBDIR += yagirc
SUBDIR += zircon
.include <bsd.port.subdir.mk>
diff --git a/irc/yagirc/Makefile b/irc/yagirc/Makefile
deleted file mode 100644
index 9a3f187c0161..000000000000
--- a/irc/yagirc/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# New ports collection makefile for: yagirc
-# Date created: 6 July 1998
-# Whom: mph
-#
-# $FreeBSD$
-#
-
-PORTNAME= yagirc
-PORTVERSION= 0.66.1
-CATEGORIES= irc
-MASTER_SITES= ${MASTER_SITE_LOCAL}
-MASTER_SITE_SUBDIR= mph
-
-MAINTAINER= mph@freebsd.org
-
-BROKEN= "Does not build"
-
-USE_XPM= yes
-USE_GMAKE= yes
-USE_PERL5= yes
-USE_IMLIB= yes
-USE_ESOUND= yes
-USE_LIBTOOL= yes
-CONFIGURE_ARGS= --disable-gnome --disable-pthread
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LIBS="-L${LOCALBASE}/lib"
-
-.include <bsd.port.mk>
diff --git a/irc/yagirc/distinfo b/irc/yagirc/distinfo
deleted file mode 100644
index aac3300441e9..000000000000
--- a/irc/yagirc/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (yagirc-0.66.1.tar.gz) = 034b73f35f7c8d3790ca695c73486106
-MD5 (gtkonly.patch) = dd7711efb875fee732a15b0681fc1b5b
diff --git a/irc/yagirc/files/patch-aa b/irc/yagirc/files/patch-aa
deleted file mode 100644
index 92742c7c2f42..000000000000
--- a/irc/yagirc/files/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
---- configure.orig Sun May 23 02:28:26 1999
-+++ configure Sun May 23 02:28:56 1999
-@@ -3113,15 +3113,15 @@
- fi
-
-
-- USE_INCLUDED_LIBINTL=yes
-+# USE_INCLUDED_LIBINTL=yes
- CATOBJEXT=.gmo
- INSTOBJEXT=.mo
- DATADIRNAME=share
-- INTLDEPS='$(top_builddir)/intl/libintl.a'
-+ INTLDEPS='-lintl'
- INTLLIBS=$INTLDEPS
- LIBS=`echo $LIBS | sed -e 's/-lintl//'`
-- nls_cv_header_intl=intl/libintl.h
-- nls_cv_header_libgt=intl/libgettext.h
-+# nls_cv_header_intl=intl/libintl.h
-+# nls_cv_header_libgt=intl/libgettext.h
- fi
-
- if test "$XGETTEXT" != ":"; then
diff --git a/irc/yagirc/files/patch-ab b/irc/yagirc/files/patch-ab
deleted file mode 100644
index 2730d4e1caf1..000000000000
--- a/irc/yagirc/files/patch-ab
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/net_nowait.c.orig Sun May 23 02:42:46 1999
-+++ src/net_nowait.c Sun May 23 02:43:09 1999
-@@ -32,6 +32,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <errno.h>
- #include <glib.h>
- #include <string.h>
-
diff --git a/irc/yagirc/files/patch-ac b/irc/yagirc/files/patch-ac
deleted file mode 100644
index 7da2e52801a9..000000000000
--- a/irc/yagirc/files/patch-ac
+++ /dev/null
@@ -1,45 +0,0 @@
---- src/gui_channels.c.orig Fri Oct 23 00:56:58 1998
-+++ src/gui_channels.c Sun May 23 03:01:28 1999
-@@ -240,8 +240,9 @@
- gethostname(hostname, 127);
- sprintf(pid, "%d", getpid());
-
-- channel_drag_types[0].target =
-- g_copy_strings("application/x-yagirc-channel-", hostname, pid, NULL);
-+ channel_drag_types[0].target = g_malloc ( strlen (hostname) + strlen (pid) + 29 );
-+ sprintf(channel_drag_types[0].target, "%s%s%s",
-+ "application/x-yagirc-channel-", hostname, pid, NULL);
- }
-
- /* create widget */
---- src/gui_list.c.orig Sun May 23 03:12:18 1999
-+++ src/gui_list.c Sun May 23 03:12:30 1999
-@@ -278,8 +278,6 @@
- gtk_signal_connect(GTK_OBJECT(clist), "unselect_row", GTK_SIGNAL_FUNC(list_callback), "unselect");
- gtk_box_pack_start(GTK_BOX(hbox), GTK_WIDGET(clist), TRUE, TRUE, 0);
- gtk_clist_set_selection_mode(clist, GTK_SELECTION_SINGLE);
-- gtk_clist_set_policy(clist, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
-- gtk_clist_set_border(clist, GTK_SHADOW_OUT);
- gtk_clist_set_column_title(clist, 0, "Channel");
- gtk_clist_set_column_title(clist, 1, "Users");
- gtk_clist_set_column_title(clist, 2, "Topic");
---- src/gui_setup_alias.c.orig Sun May 23 03:12:54 1999
-+++ src/gui_setup_alias.c Sun May 23 03:13:09 1999
-@@ -239,7 +239,6 @@
-
- /* alias list */
- gtk_clist_set_column_width (GTK_CLIST (alias_list), 0, 100);
-- gtk_clist_set_policy(GTK_CLIST(alias_list), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
- //gtk_list_set_selection_mode (GTK_LIST(alias_list), GTK_SELECTION_MULTIPLE);
- gtk_clist_set_selection_mode (GTK_CLIST(alias_list), GTK_SELECTION_BROWSE);
- gtk_signal_connect (GTK_OBJECT (alias_list), "select_row",
---- src/gui_urllist.c.orig Sun May 23 03:13:42 1999
-+++ src/gui_urllist.c Sun May 23 03:13:54 1999
-@@ -160,7 +160,6 @@
-
- /* configure the list box */
- gtk_clist_set_selection_mode(GTK_CLIST(urlwin->list), GTK_SELECTION_BROWSE);
-- gtk_clist_set_policy(GTK_CLIST(urlwin->list), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
- gtk_clist_column_titles_passive(GTK_CLIST(urlwin->list));
- gtk_clist_set_column_width(GTK_CLIST(urlwin->list), 0, 140);
- gtk_clist_set_column_width(GTK_CLIST(urlwin->list), 1, 60);
diff --git a/irc/yagirc/files/patch-ad b/irc/yagirc/files/patch-ad
deleted file mode 100644
index 0747b249c375..000000000000
--- a/irc/yagirc/files/patch-ad
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/script.c.orig Sat Sep 9 02:05:15 2000
-+++ src/script.c Sat Sep 9 02:05:28 2000
-@@ -31,6 +31,7 @@
- #define bool char
- #endif
-
-+#define PERL_POLLUTE
- #include <EXTERN.h>
- #include <XSUB.h>
-
diff --git a/irc/yagirc/pkg-comment b/irc/yagirc/pkg-comment
deleted file mode 100644
index d26a5880a69c..000000000000
--- a/irc/yagirc/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A graphical IRC client scriptable in Perl
diff --git a/irc/yagirc/pkg-descr b/irc/yagirc/pkg-descr
deleted file mode 100644
index b263dca29f6f..000000000000
--- a/irc/yagirc/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-This IRC client is graphical (based on the Gtk toolkit) and scriptable
-using Perl.
diff --git a/irc/yagirc/pkg-plist b/irc/yagirc/pkg-plist
deleted file mode 100644
index ea65b1077392..000000000000
--- a/irc/yagirc/pkg-plist
+++ /dev/null
@@ -1,25 +0,0 @@
-bin/yagirc
-etc/yagirc.conf
-share/locale/es/LC_MESSAGES/yagirc.mo
-share/locale/fr/LC_MESSAGES/yagirc.mo
-share/locale/ko/LC_MESSAGES/yagirc.mo
-share/locale/pt_BR/LC_MESSAGES/yagirc.mo
-share/yagirc/irc.pl
-share/yagirc/pixmaps/about.xpm
-share/yagirc/pixmaps/autoraise.xpm
-share/yagirc/pixmaps/away.xpm
-share/yagirc/pixmaps/close.xpm
-share/yagirc/pixmaps/connect.xpm
-share/yagirc/pixmaps/disconnect.xpm
-share/yagirc/pixmaps/font.xpm
-share/yagirc/pixmaps/join.xpm
-share/yagirc/pixmaps/newh.xpm
-share/yagirc/pixmaps/neww.xpm
-share/yagirc/pixmaps/part.xpm
-share/yagirc/pixmaps/quit.xpm
-share/yagirc/pixmaps/selectserver.xpm
-share/yagirc/pixmaps/setup.xpm
-share/yagirc/pixmaps/url.xpm
-share/yagirc/startup.pm
-@dirrm share/yagirc/pixmaps
-@dirrm share/yagirc