ports/58670: Fix irc/darkbot build on 5.X

Samy Al Bahra samy at kerneled.com
Wed Oct 29 03:00:29 UTC 2003


>Number:         58670
>Category:       ports
>Synopsis:       Fix irc/darkbot build on 5.X
>Confidential:   no
>Severity:       critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Oct 28 19:00:27 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Samy Al Bahra
>Release:        FreeBSD 5.1-CURRENT i386
>Organization:
Kerneled 
>Environment:


System: FreeBSD beastie.freebsd.local 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Wed Aug 20 18:35:24 AST 2003     samy at beastie.freebsd.local:/usr/src/sys/i386/compile/KERNELED i386  


>Description:


irc/darkbot does not build on 5.X
systems due to multiline unterminated
string literals. The patch that follows
fixes this.


>How-To-Repeat:


Build on a 5.X system.


>Fix:


diff -ruN darkbot/Makefile /tmp/darkbot/Makefile
--- darkbot/Makefile	Tue Oct 28 15:24:05 2003
+++ /tmp/darkbot/Makefile	Tue Oct 28 15:23:18 2003
@@ -24,13 +24,7 @@
 GNU_CONFIGURE=	yes
 IS_INTERACTIVE=	yes
 
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 501000
-BROKEN=		"Does not compile"
-.endif
-
 pre-install:
 	${CAT} ${MASTERDIR}/pkg-plist | ${SED} -e "s,/usr/local,${LOCALBASE},g" > ${PLIST}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff -ruN darkbot/files/patch-darkbot.c /tmp/darkbot/files/patch-darkbot.c
--- darkbot/files/patch-darkbot.c	Thu Jan  1 03:00:00 1970
+++ /tmp/darkbot/files/patch-darkbot.c	Tue Oct 28 15:22:56 2003
@@ -0,0 +1,29 @@
+--- darkbot.c.orig	Tue Oct 28 15:22:21 2003
++++ darkbot.c	Tue Oct 28 15:22:21 2003
+@@ -3476,8 +3476,7 @@
+           strlwr (s2);
+           if (*s2 == '~') {
+             S
+-              ("PRIVMSG %s :%s, rdb files can only be called from the data of a topic, they cannot be used in the
+- topic itself.\n",
++              ("PRIVMSG %s :%s, rdb files can only be called from the data of a topic, they cannot be used in the topic itself.\n",
+                target, source);
+             R;
+           }
+@@ -5026,14 +5025,12 @@
+ #else
+   if (pre_CLIENTS == 0 || pre_CLIENTS == L_CLIENTS) {
+     S
+-      ("PRIVMSG %s :\1ACTION \37(\37%2d servers\37)\37: %2d opers + \2%4d\2 users \37(\37%s%% %5d global \2!\2 %3
+-ld avg\37)\37\1\n",
++      ("PRIVMSG %s :\1ACTION \37(\37%2d servers\37)\37: %2d opers + \2%4d\2 users \37(\37%s%% %5d global \2!\2 %3ld avg\37)\37\1\n",
+        CHAN, NUM_SERV, IRCOPS, L_CLIENTS, tmp,
+        G_USERS, G_USERS / NUM_SERV);}
+   else
+     S
+-      ("PRIVMSG %s :\1ACTION \37(\37%2d servers\37)\37: %2d opers + \2%4d\2 users [\37%c%2d\37] \37(\37%s%% %5d g
+-lobal \2!\2 %3ld avg\37)\37\1\n",
++      ("PRIVMSG %s :\1ACTION \37(\37%2d servers\37)\37: %2d opers + \2%4d\2 users [\37%c%2d\37] \37(\37%s%% %5d global \2!\2 %3ld avg\37)\37\1\n",
+        CHAN, NUM_SERV, IRCOPS, L_CLIENTS,
+        Stat[0], pre_CLIENTS, tmp, G_USERS, G_USERS / NUM_SERV);
+ #endif



>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list