summaryrefslogtreecommitdiff
path: root/irc/ezbounce
diff options
context:
space:
mode:
authorIon-Mihai Tetcu <itetcu@FreeBSD.org>2007-01-16 09:21:14 +0000
committerIon-Mihai Tetcu <itetcu@FreeBSD.org>2007-01-16 09:21:14 +0000
commit528104def4837a7dd57c06c8994ee8a97f6f973f (patch)
tree8c8fbc1d1140d0824c10611093571c1660bdcb21 /irc/ezbounce
parentUpdate to 1.4.3 (diff)
- Update to 1.04c
- Fixed MASTER_SITES PR: ports/107932 Submitted by: Joe Holden (maintainer)
Notes
Notes: svn path=/head/; revision=182500
Diffstat (limited to 'irc/ezbounce')
-rw-r--r--irc/ezbounce/Makefile8
-rw-r--r--irc/ezbounce/distinfo6
-rw-r--r--irc/ezbounce/files/patch-linkedlist.h20
3 files changed, 7 insertions, 27 deletions
diff --git a/irc/ezbounce/Makefile b/irc/ezbounce/Makefile
index bafbac599b2b..7b22e935ee3c 100644
--- a/irc/ezbounce/Makefile
+++ b/irc/ezbounce/Makefile
@@ -6,11 +6,11 @@
#
PORTNAME= ezbounce
-PORTVERSION= 1.04.b
+PORTVERSION= 1.04c
CATEGORIES= irc
-MASTER_SITES= http://druglord.freelsd.org/ezbounce/ \
- http://ezbounce.dc-team.com/
-DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/b/}
+MASTER_SITES= http://druglord.freelsd.org/ezbounce/files/ \
+ ftp://ftp.rewt.org.uk/pub/distfiles/
+DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= joe@joeholden.co.uk
COMMENT= A highly configurable IRC Proxy
diff --git a/irc/ezbounce/distinfo b/irc/ezbounce/distinfo
index 5fd2cd9f4468..964ec7bbb037 100644
--- a/irc/ezbounce/distinfo
+++ b/irc/ezbounce/distinfo
@@ -1,3 +1,3 @@
-MD5 (ezbounce-1.04b.tar.gz) = 13fea5284067214d975d97845a082d6f
-SHA256 (ezbounce-1.04b.tar.gz) = f733a3c8ffb0953788a9191311af2e52348efe7c6abbabdedcdbce4f5e08901e
-SIZE (ezbounce-1.04b.tar.gz) = 190837
+MD5 (ezbounce-1.04c.tar.gz) = d3cc3bbd162a0ba7d22a0a9fc629bfd6
+SHA256 (ezbounce-1.04c.tar.gz) = 5be7b903e3682aee9d1758f60957486e4aa08da717fc763caab1415454eaebd8
+SIZE (ezbounce-1.04c.tar.gz) = 192630
diff --git a/irc/ezbounce/files/patch-linkedlist.h b/irc/ezbounce/files/patch-linkedlist.h
deleted file mode 100644
index be5f1a3a74e6..000000000000
--- a/irc/ezbounce/files/patch-linkedlist.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- lib/linkedlist.h.orig Mon Aug 16 16:53:58 2004
-+++ lib/linkedlist.h Mon Aug 16 17:08:25 2004
-@@ -89,7 +89,7 @@
- list_iterator(__list_core * x) : __list_iter(x) { }
- T * next() { return (T *) __list_iter::next(); }
- T * remove() { return (T *) __list_iter::remove(); }
-- T * get(void) { return (T *) __list_iter::get(); }
-+ //T * get(void) { return (T *) __list_iter::get(); }
- T * set(int x) { return (T *) __list_iter::set(x); }
- };
-
-@@ -97,7 +97,7 @@
- {
- public:
- int add(T *x) { return __list_core::add((void *) x); }
-- int add(int w, T * x) { return __list_core::insert(w, (void *) x); }
-+ //int add(int w, T * x) { return __list_core::insert(w, (void *) x); }
- T * get(int idx) { return (T *) __list_core::get(idx); }
- T * remove(int idx) { return (T *) __list_core::remove(idx); }
- bool remove(T * d) { return __list_core::remove(d); }