aboutsummaryrefslogtreecommitdiffstats
path: root/irc
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2005-10-05 06:11:10 +0800
committeralfred <alfred@FreeBSD.org>2005-10-05 06:11:10 +0800
commit11b55ada59939d261be525aac3780104b36d9151 (patch)
tree44caf58f7b2cb1c9de0c04a7b491f5ef2b7e0108 /irc
parent57c8b4f25a0f27965563f5084025b22108e81c08 (diff)
downloadfreebsd-ports-gnome-11b55ada59939d261be525aac3780104b36d9151.tar.gz
freebsd-ports-gnome-11b55ada59939d261be525aac3780104b36d9151.tar.zst
freebsd-ports-gnome-11b55ada59939d261be525aac3780104b36d9151.zip
Update to 10.0!
Thanks to author for incorporating my changes and to edwin@'s script for pointing me at this update.
Diffstat (limited to 'irc')
-rw-r--r--irc/insub/Makefile4
-rw-r--r--irc/insub/distinfo4
-rw-r--r--irc/insub/files/patch-throttle42
3 files changed, 4 insertions, 46 deletions
diff --git a/irc/insub/Makefile b/irc/insub/Makefile
index c5755ca9e421..e37a2e2a937d 100644
--- a/irc/insub/Makefile
+++ b/irc/insub/Makefile
@@ -6,8 +6,8 @@
#
PORTNAME= insub
-PORTVERSION= 9.8
-PORTREVISION= 1
+PORTVERSION= 10.0
+#PORTREVISION= 1
CATEGORIES= irc
MASTER_SITES= http://gruntle.org/projects/irssi/insub/
diff --git a/irc/insub/distinfo b/irc/insub/distinfo
index e1a635bab47f..0fd2524e6141 100644
--- a/irc/insub/distinfo
+++ b/irc/insub/distinfo
@@ -1,2 +1,2 @@
-MD5 (insub-9.8.tar.bz2) = 0e5adddaf68e3ac4ef0bae166d254ffc
-SIZE (insub-9.8.tar.bz2) = 42297
+MD5 (insub-10.0.tar.bz2) = 784d868626e046a1a5c5f83b46cee488
+SIZE (insub-10.0.tar.bz2) = 45254
diff --git a/irc/insub/files/patch-throttle b/irc/insub/files/patch-throttle
deleted file mode 100644
index 8084fa646771..000000000000
--- a/irc/insub/files/patch-throttle
+++ /dev/null
@@ -1,42 +0,0 @@
---- insub.old Wed May 11 00:33:48 2005
-+++ insub.pl Wed May 11 00:33:51 2005
-@@ -364,19 +364,24 @@
- $text =~ s/</&lt;/g;
- $text =~ s/>/&gt;/g;
-
-- if (defined($prev_bg_color) && $bg_col == $prev_bg_color &&
-- defined($prev_fg_color) && $fg_col == $prev_fg_color) {
-- $ret = $text;
-+ if ((defined($prev_bg_color) && $bg_col != $prev_bg_color) ||
-+ (defined($prev_fg_color) && $fg_col != $prev_fg_color)) {
-+ $ret .= qq(</span>);
-+ }
-+
-+ if ((defined($prev_bg_color) && $bg_col == $prev_bg_color) &&
-+ (defined($prev_fg_color) && $fg_col == $prev_fg_color)) {
-+ $ret .= $text;
- } elsif ($bg_col == 1) {
- # black is assumed because of a div taggy
-- $ret = sprintf(
-- qq(<span style="color:%s;">%s</span>),
-+ $ret .= sprintf(
-+ qq(<span style="color:%s;">%s),
- $html_map->{$fg_col},
- $text,
- );
- } else {
-- $ret = sprintf(
-- qq(<span style="color:%s;background-color:%s;">%s</span>),
-+ $ret .= sprintf(
-+ qq(<span style="color:%s;background-color:%s;">%s),
- $html_map->{$fg_col},
- $html_map->{$bg_col},
- $text,
-@@ -916,6 +921,7 @@
- }
-
-
-+ $| = 1 if ($throttle);
- foreach my $line (split(/\n/, $text)) {
- if ($CONTEXT eq 'irssi') {
- $cmd = "msg $sendto" unless $cmd;