summaryrefslogtreecommitdiff
path: root/irc/irssi-devel
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2005-01-21 15:36:45 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2005-01-21 15:36:45 +0000
commit7011c19a8c96a2f8fb7c04d61cb28cdc507584a6 (patch)
tree22c0efaf2b6bb5b461389f9bac9542c7e3a5909a /irc/irssi-devel
parentNow buildable on 4.x, still broken on >= 5.x. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_11_0'.release/4.11.0
Diffstat (limited to 'irc/irssi-devel')
-rw-r--r--irc/irssi-devel/Makefile144
-rw-r--r--irc/irssi-devel/distinfo2
-rw-r--r--irc/irssi-devel/files/patch-Makefile.in22
-rw-r--r--irc/irssi-devel/files/patch-aa20
-rw-r--r--irc/irssi-devel/files/patch-eai_nodata11
-rw-r--r--irc/irssi-devel/pkg-descr7
-rw-r--r--irc/irssi-devel/pkg-plist181
7 files changed, 0 insertions, 387 deletions
diff --git a/irc/irssi-devel/Makefile b/irc/irssi-devel/Makefile
deleted file mode 100644
index 710cabadd760..000000000000
--- a/irc/irssi-devel/Makefile
+++ /dev/null
@@ -1,144 +0,0 @@
-# New ports collection makefile for: irssi
-# Date created: 14 Apr 1999
-# Whom: Jim Mock <jim@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= irssi
-PORTVERSION= 0.8.9
-PORTREVISION?= 2
-CATEGORIES?= irc
-MASTER_SITES= http://irssi.org/files/
-
-MAINTAINER?= vanilla@FreeBSD.org
-COMMENT?= A modular IRC client with many features
-
-USE_BZIP2= yes
-GNU_CONFIGURE= yes
-
-WANT_GNOME= yes
-CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-
-MAN1= irssi.1
-
-# Set option defaults.
-
-.if ! defined(WITH_SSL)
-WITH_SSL= yes
-.endif
-
-.if ${WITH_SSL:L} == "no"
-CONFIGURE_ARGS+= --disable-ssl
-.else
-USE_OPENSSL= yes
-.endif
-
-.include <bsd.port.pre.mk>
-
-.if ! defined(WITH_GLIB)
-.if exists(${LOCALBASE}/include/glib-2.0/glib.h)
-WITH_GLIB= 2
-.else
-WITH_GLIB= 1
-.endif
-.endif
-
-.if ! defined(WITH_PERL)
-WITH_PERL= yes
-.endif
-
-.if ! defined(WITH_PROXY)
-WITH_PROXY= no
-.endif
-
-.if ! defined(WITH_SOCKS)
-WITH_SOCKS= no
-.endif
-
-.if ! defined(WITH_IPV6)
-WITH_IPV6= yes
-.endif
-
-.if ! defined(WITH_BOEHM_GC)
-WITH_BOEHM_GC= no
-.endif
-
-.if ! defined(WITH_BOT)
-WITH_BOT= no
-.endif
-
-# Process options.
-
-.if ${WITH_GLIB} == "2"
-USE_GNOME= glib20
-.elif ${WITH_GLIB} == "1"
-CONFIGURE_ARGS+= --with-glib1
-USE_GNOME= glib12
-.else
-.error WITH_GLIB must be set to "1" or "2".
-.endif
-
-.if ${WITH_PERL:L} == "yes"
-USE_PERL5= yes
-CONFIGURE_ARGS+= --with-perl-lib=site
-PLIST_SUB+= WITH_PERL=""
-.else
-CONFIGURE_ARGS+= --without-perl
-PLIST_SUB+= WITH_PERL="@comment "
-.endif
-
-.if ${WITH_PROXY:L} == "yes"
-CONFIGURE_ARGS+= --with-proxy
-PLIST_SUB+= WITH_PROXY=""
-.else
-PLIST_SUB+= WITH_PROXY="@comment "
-.endif
-
-.if ${WITH_SOCKS:L} == "yes"
-CONFIGURE_ARGS+= --with-socks
-.endif
-
-.if ${WITH_IPV6:L} == "yes"
-.if ${OSVERSION} >= 400014
-CONFIGURE_ARGS+= --enable-ipv6
-CATEGORIES+= ipv6
-.else
-.error This version of FreeBSD does not support IPv6. Please use WITH_IPV6=no.
-.endif
-.endif
-
-.if ${WITH_BOEHM_GC:L} == "yes"
-LIB_DEPENDS+= gc.1:${PORTSDIR}/devel/boehm-gc
-CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include
-CONFIGURE_ARGS+= --with-gc
-.endif
-
-.if ${WITH_BOT:L} == "yes"
-CONFIGURE_ARGS+= --with-bot
-.endif
-
-pre-extract:
- @${ECHO} ""
- @${ECHO} "You may use the following build options:"
- @${ECHO} ""
- @${ECHO} " WITH_GLIB=1|2 Select a GLib version to use [auto]"
- @${ECHO} " WITH_PERL=yes|no Enable Perl support [yes]"
- @${ECHO} " WITH_PROXY=yes|no Enable irssi-proxy [no]"
- @${ECHO} " WITH_SOCKS=yes|no Enable Socks support [no]"
- @${ECHO} " WITH_IPV6=yes|no Enable IPv6 support [yes]"
- @${ECHO} " WITH_SSL=yes|no Enable SSL support [yes]"
- @${ECHO} " WITH_BOEHM_GC=yes|no Enable GC support [no]"
- @${ECHO} " WITH_BOT=yes|no Enable BOT support [no]"
- @${ECHO} ""
-
-pre-configure:
- @cd ${WRKSRC} && ${MV} irssi.conf irssi.conf.sample || ${TRUE}
-
-post-install:
- @if [ ! -f ${LOCALBASE}/etc/irssi.conf ]; then \
- ${ECHO} "Installing default configuration file."; \
- ${INSTALL_DATA} ${WRKSRC}/irssi.conf.sample ${LOCALBASE}/etc/irssi.conf ; \
- fi
-
-.include <bsd.port.post.mk>
diff --git a/irc/irssi-devel/distinfo b/irc/irssi-devel/distinfo
deleted file mode 100644
index 1875580d2784..000000000000
--- a/irc/irssi-devel/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (irssi-0.8.9.tar.bz2) = 6610ee0e27922f447e40828cf7dee507
-SIZE (irssi-0.8.9.tar.bz2) = 816465
diff --git a/irc/irssi-devel/files/patch-Makefile.in b/irc/irssi-devel/files/patch-Makefile.in
deleted file mode 100644
index 294e8838ef81..000000000000
--- a/irc/irssi-devel/files/patch-Makefile.in
+++ /dev/null
@@ -1,22 +0,0 @@
---- Makefile.in.orig Sun Nov 23 15:15:19 2003
-+++ Makefile.in Sun Nov 23 15:24:26 2003
-@@ -119,7 +119,7 @@
- SUBDIRS = src docs scripts
-
- confdir = $(sysconfdir)
--conf_DATA = irssi.conf
-+conf_DATA = irssi.conf.sample
-
- themedir = $(datadir)/irssi/themes
- theme_DATA = default.theme colorless.theme
-@@ -459,8 +459,8 @@
-
- config.h: default-config.h default-theme.h
-
--default-config.h: $(srcdir)/irssi.conf
-- $(srcdir)/file2header.sh $(srcdir)/irssi.conf default_config > default-config.h
-+default-config.h: $(srcdir)/irssi.conf.sample
-+ $(srcdir)/file2header.sh $(srcdir)/irssi.conf.sample default_config > default-config.h
- default-theme.h: $(srcdir)/default.theme
- $(srcdir)/file2header.sh $(srcdir)/default.theme default_theme > default-theme.h
-
diff --git a/irc/irssi-devel/files/patch-aa b/irc/irssi-devel/files/patch-aa
deleted file mode 100644
index 3703ad902d46..000000000000
--- a/irc/irssi-devel/files/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/irc/core/irc.c.orig Fri Oct 10 17:30:03 2003
-+++ src/irc/core/irc.c Sat Dec 27 22:20:56 2003
-@@ -108,9 +108,14 @@
- int send_now;
-
- g_get_current_time(&now);
-- send_now = g_timeval_cmp(&now, &server->wait_cmd) >= 0 &&
-- (server->cmdcount < server->max_cmds_at_once ||
-- server->cmd_queue_speed <= 0);
-+
-+ if (getenv("IRSSI_NOTHROTTLE")) {
-+ send_now = TRUE;
-+ } else {
-+ send_now = g_timeval_cmp(&now, &server->wait_cmd) >= 0 &&
-+ (server->cmdcount < server->max_cmds_at_once ||
-+ server->cmd_queue_speed <= 0);
-+ }
-
- irc_send_cmd_full(server, cmd, send_now, FALSE, FALSE);
- }
diff --git a/irc/irssi-devel/files/patch-eai_nodata b/irc/irssi-devel/files/patch-eai_nodata
deleted file mode 100644
index 3d5d32db54fc..000000000000
--- a/irc/irssi-devel/files/patch-eai_nodata
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/core/network.c.orig Sat Feb 7 12:48:34 2004
-+++ src/core/network.c Sat Feb 7 12:49:40 2004
-@@ -607,7 +607,7 @@
- int net_hosterror_notfound(int error)
- {
- #ifdef HAVE_IPV6
-- return error != 1 && (error == EAI_NONAME || error == EAI_NODATA);
-+ return error != 1 && (error == EAI_NONAME);
- #else
- return error == HOST_NOT_FOUND || error == NO_ADDRESS;
- #endif
diff --git a/irc/irssi-devel/pkg-descr b/irc/irssi-devel/pkg-descr
deleted file mode 100644
index 93d192baa96d..000000000000
--- a/irc/irssi-devel/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-Irssi is a modular IRC client that currently has only text mode user
-interface, but 80-90% of the code isn't text mode specific, so other UIs could
-be created pretty easily. Also, Irssi isn't really even IRC specific anymore,
-there's already a working SILC module available. Support for other protocols
-like ICQ could be created some day too.
-
-WWW: http://www.irssi.org/
diff --git a/irc/irssi-devel/pkg-plist b/irc/irssi-devel/pkg-plist
deleted file mode 100644
index f0bd51658b11..000000000000
--- a/irc/irssi-devel/pkg-plist
+++ /dev/null
@@ -1,181 +0,0 @@
-bin/irssi
-etc/irssi.conf
-etc/irssi.conf.sample
-%%WITH_PROXY%%lib/irssi/modules/libirc_proxy.a
-%%WITH_PROXY%%lib/irssi/modules/libirc_proxy.la
-%%WITH_PROXY%%lib/irssi/modules/libirc_proxy.so
-%%WITH_PROXY%%lib/irssi/modules/libirc_proxy.so.0
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Irssi.pm
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Irssi/Irc.pm
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Irssi/TextUI.pm
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Irssi/UI.pm
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/.packlist
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/Irssi.bs
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/Irssi.so
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/Irc/.packlist
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/Irc/Irc.bs
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/Irc/Irc.so
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/TextUI/.packlist
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/TextUI/TextUI.bs
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/TextUI/TextUI.so
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/UI/.packlist
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/UI/UI.bs
-%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/UI/UI.so
-%%DOCSDIR%%/botnet.txt
-%%DOCSDIR%%/design.txt
-%%DOCSDIR%%/faq.html
-%%DOCSDIR%%/faq.txt
-%%DOCSDIR%%/formats.txt
-%%DOCSDIR%%/manual.txt
-%%DOCSDIR%%/perl.txt
-%%DOCSDIR%%/signals.txt
-%%DOCSDIR%%/special_vars.txt
-%%DOCSDIR%%/startup-HOWTO.html
-%%DATADIR%%/help/action
-%%DATADIR%%/help/admin
-%%DATADIR%%/help/alias
-%%DATADIR%%/help/away
-%%DATADIR%%/help/ban
-%%DATADIR%%/help/beep
-%%DATADIR%%/help/bind
-%%DATADIR%%/help/cat
-%%DATADIR%%/help/cd
-%%DATADIR%%/help/channel
-%%DATADIR%%/help/clear
-%%DATADIR%%/help/completion
-%%DATADIR%%/help/connect
-%%DATADIR%%/help/ctcp
-%%DATADIR%%/help/cycle
-%%DATADIR%%/help/date
-%%DATADIR%%/help/dcc
-%%DATADIR%%/help/dehilight
-%%DATADIR%%/help/deop
-%%DATADIR%%/help/devoice
-%%DATADIR%%/help/die
-%%DATADIR%%/help/disconnect
-%%DATADIR%%/help/echo
-%%DATADIR%%/help/eval
-%%DATADIR%%/help/exec
-%%DATADIR%%/help/flushbuffers
-%%DATADIR%%/help/format
-%%DATADIR%%/help/hash
-%%DATADIR%%/help/help
-%%DATADIR%%/help/hilight
-%%DATADIR%%/help/ignore
-%%DATADIR%%/help/info
-%%DATADIR%%/help/invite
-%%DATADIR%%/help/invitelist
-%%DATADIR%%/help/ircnet
-%%DATADIR%%/help/ison
-%%DATADIR%%/help/join
-%%DATADIR%%/help/kick
-%%DATADIR%%/help/kickban
-%%DATADIR%%/help/kill
-%%DATADIR%%/help/knock
-%%DATADIR%%/help/knockout
-%%DATADIR%%/help/lastlog
-%%DATADIR%%/help/layout
-%%DATADIR%%/help/levels
-%%DATADIR%%/help/links
-%%DATADIR%%/help/list
-%%DATADIR%%/help/load
-%%DATADIR%%/help/log
-%%DATADIR%%/help/lusers
-%%DATADIR%%/help/map
-%%DATADIR%%/help/me
-%%DATADIR%%/help/mircdcc
-%%DATADIR%%/help/mode
-%%DATADIR%%/help/motd
-%%DATADIR%%/help/msg
-%%DATADIR%%/help/names
-%%DATADIR%%/help/nctcp
-%%DATADIR%%/help/netsplit
-%%DATADIR%%/help/nick
-%%DATADIR%%/help/note
-%%DATADIR%%/help/notice
-%%DATADIR%%/help/notify
-%%DATADIR%%/help/op
-%%DATADIR%%/help/oper
-%%DATADIR%%/help/part
-%%DATADIR%%/help/ping
-%%DATADIR%%/help/query
-%%DATADIR%%/help/quit
-%%DATADIR%%/help/quote
-%%DATADIR%%/help/rawlog
-%%DATADIR%%/help/reconnect
-%%DATADIR%%/help/rehash
-%%DATADIR%%/help/reload
-%%DATADIR%%/help/restart
-%%DATADIR%%/help/rmreconns
-%%DATADIR%%/help/rmrejoins
-%%DATADIR%%/help/rping
-%%DATADIR%%/help/save
-%%DATADIR%%/help/say
-%%DATADIR%%/help/sconnect
-%%DATADIR%%/help/script
-%%DATADIR%%/help/scrollback
-%%DATADIR%%/help/server
-%%DATADIR%%/help/servlist
-%%DATADIR%%/help/set
-%%DATADIR%%/help/silence
-%%DATADIR%%/help/squery
-%%DATADIR%%/help/squit
-%%DATADIR%%/help/stats
-%%DATADIR%%/help/statusbar
-%%DATADIR%%/help/time
-%%DATADIR%%/help/toggle
-%%DATADIR%%/help/topic
-%%DATADIR%%/help/trace
-%%DATADIR%%/help/ts
-%%DATADIR%%/help/unalias
-%%DATADIR%%/help/unban
-%%DATADIR%%/help/unignore
-%%DATADIR%%/help/unload
-%%DATADIR%%/help/unnotify
-%%DATADIR%%/help/unquery
-%%DATADIR%%/help/unsilence
-%%DATADIR%%/help/upgrade
-%%DATADIR%%/help/uping
-%%DATADIR%%/help/ver
-%%DATADIR%%/help/userhost
-%%DATADIR%%/help/version
-%%DATADIR%%/help/voice
-%%DATADIR%%/help/wait
-%%DATADIR%%/help/wall
-%%DATADIR%%/help/wallchops
-%%DATADIR%%/help/wallops
-%%DATADIR%%/help/watch
-%%DATADIR%%/help/who
-%%DATADIR%%/help/whois
-%%DATADIR%%/help/whowas
-%%DATADIR%%/help/window
-%%DATADIR%%/help/wjoin
-%%DATADIR%%/help/wquery
-%%DATADIR%%/scripts/autoop.pl
-%%DATADIR%%/scripts/autorejoin.pl
-%%DATADIR%%/scripts/buf.pl
-%%DATADIR%%/scripts/command.pl
-%%DATADIR%%/scripts/dns.pl
-%%DATADIR%%/scripts/kills.pl
-%%DATADIR%%/scripts/mail.pl
-%%DATADIR%%/scripts/mlock.pl
-%%DATADIR%%/scripts/msg-event.pl
-%%DATADIR%%/scripts/quitmsg.pl
-%%DATADIR%%/scripts/redirect.pl
-%%DATADIR%%/scripts/scriptassist.pl
-%%DATADIR%%/scripts/splitlong.pl
-%%DATADIR%%/scripts/usercount.pl
-%%DATADIR%%/themes/colorless.theme
-%%DATADIR%%/themes/default.theme
-%%WITH_PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/UI
-%%WITH_PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/TextUI
-%%WITH_PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi/Irc
-%%WITH_PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Irssi
-%%WITH_PERL%%@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Irssi
-@dirrm lib/irssi/modules
-@dirrm lib/irssi
-@dirrm %%DOCSDIR%%
-@dirrm %%DATADIR%%/themes
-@dirrm %%DATADIR%%/scripts
-@dirrm %%DATADIR%%/help
-@dirrm %%DATADIR%%