summaryrefslogtreecommitdiff
path: root/irc
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2007-10-02 15:00:14 +0000
committerKevin Lo <kevlo@FreeBSD.org>2007-10-02 15:00:14 +0000
commit14326f5ba487a0bdb1d31c0497abe2c02332894f (patch)
tree2cd73a1caf2e7749cb566b4d196bb705a82d3681 /irc
parent- Update to 1.5.7 (diff)
- Fix build with gcc4.
- Drop maintainer.
Notes
Notes: svn path=/head/; revision=200656
Diffstat (limited to 'irc')
-rw-r--r--irc/quirc/Makefile14
-rw-r--r--irc/quirc/files/patch-format.cc11
2 files changed, 12 insertions, 13 deletions
diff --git a/irc/quirc/Makefile b/irc/quirc/Makefile
index 771749c8e04d..625a10a5c9eb 100644
--- a/irc/quirc/Makefile
+++ b/irc/quirc/Makefile
@@ -7,11 +7,11 @@
PORTNAME= quirc
PORTVERSION= 0.9.84
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= irc tk84
MASTER_SITES= ${MASTER_SITE_LOCAL:S/$/:local/}
-MAINTAINER= kevlo@FreeBSD.org
+MAINTAINER= ports@FreeBSD.org
COMMENT= An irc client for the X Window System that uses TCL/TK
LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84
@@ -45,12 +45,4 @@ post-install:
.endfor
.endif
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 700042
-.if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
-BROKEN= Does not compile with GCC 4.2
-.endif
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/irc/quirc/files/patch-format.cc b/irc/quirc/files/patch-format.cc
index b2c258ab06f2..e43ad0f228c0 100644
--- a/irc/quirc/files/patch-format.cc
+++ b/irc/quirc/files/patch-format.cc
@@ -1,8 +1,15 @@
---- format.cc.orig Mon Jan 12 18:32:01 2004
-+++ format.cc Tue Feb 3 23:19:28 2004
+--- format.cc.orig 2004-01-12 17:32:01.000000000 +0800
++++ format.cc 2007-10-02 22:46:34.000000000 +0800
@@ -1,4 +1,5 @@
#include <stdarg.h>
+#include <sys/types.h>
#include "quirc.h"
#include "hash.h"
+@@ -405,5 +406,5 @@
+ }
+
+ int fexists(const char *type) {
+- return (int)hash_get(&formats,type);
++ return (int)*hash_get(&formats,type);
+ }