diff options
Diffstat (limited to 'data/bitchx')
-rw-r--r-- | data/bitchx/_metadata/homepage | 1 | ||||
-rw-r--r-- | data/bitchx/_metadata/version | 2 | ||||
-rw-r--r-- | data/bitchx/bitchx-1.2.1.tar.gz | bin | 0 -> 2549182 bytes | |||
-rw-r--r-- | data/bitchx/ircii-pana-1.1-final.tar.gz | bin | 2532476 -> 0 bytes | |||
-rw-r--r-- | data/bitchx/make.sh | 4 | ||||
-rw-r--r-- | data/bitchx/mdns.diff | 25 | ||||
-rw-r--r-- | data/bitchx/port.diff | 72 |
7 files changed, 4 insertions, 100 deletions
diff --git a/data/bitchx/_metadata/homepage b/data/bitchx/_metadata/homepage new file mode 100644 index 000000000..1512b7881 --- /dev/null +++ b/data/bitchx/_metadata/homepage @@ -0,0 +1 @@ +http://www.bitchx.com/ diff --git a/data/bitchx/_metadata/version b/data/bitchx/_metadata/version index 9459d4ba2..6085e9465 100644 --- a/data/bitchx/_metadata/version +++ b/data/bitchx/_metadata/version @@ -1 +1 @@ -1.1 +1.2.1 diff --git a/data/bitchx/bitchx-1.2.1.tar.gz b/data/bitchx/bitchx-1.2.1.tar.gz Binary files differnew file mode 100644 index 000000000..d00bd4aa0 --- /dev/null +++ b/data/bitchx/bitchx-1.2.1.tar.gz diff --git a/data/bitchx/ircii-pana-1.1-final.tar.gz b/data/bitchx/ircii-pana-1.1-final.tar.gz Binary files differdeleted file mode 100644 index 955c9ec9f..000000000 --- a/data/bitchx/ircii-pana-1.1-final.tar.gz +++ /dev/null diff --git a/data/bitchx/make.sh b/data/bitchx/make.sh index 53ef8a373..cc0d625b4 100644 --- a/data/bitchx/make.sh +++ b/data/bitchx/make.sh @@ -1,5 +1,5 @@ pkg:setup pkg:configure -make +make -j8 make install prefix="${PKG_DEST}/usr" -pkg: ln -sf BitchX-1.1-final /usr/bin/BitchX +pkg: ln -sf BitchX-1.2.1 /usr/bin/BitchX diff --git a/data/bitchx/mdns.diff b/data/bitchx/mdns.diff deleted file mode 100644 index 12a95e9f8..000000000 --- a/data/bitchx/mdns.diff +++ /dev/null @@ -1,25 +0,0 @@ -diff -ru BitchX/source/irc.c BitchX+iPhone/source/irc.c ---- BitchX/source/irc.c 2004-03-26 06:15:57.000000000 +0000 -+++ BitchX+iPhone/source/irc.c 2008-03-05 23:33:00.000000000 +0000 -@@ -1,3 +1,5 @@ -+#include <mach-o/nlist.h> -+ - /* - * ircII: a new irc client. I like it. I hope you will too! - * -@@ -1464,6 +1466,15 @@ - - int main(int argc, char *argv[], char *envp[]) - { -+#if !defined(__ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__) || __ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__ < 10200 -+ struct nlist nl[2]; -+ memset(nl, 0, sizeof(nl)); -+ nl[0].n_un.n_name = (char *) "_useMDNSResponder"; -+ nlist("/usr/lib/libc.dylib", nl); -+ if (nl[0].n_type != N_UNDF) -+ *(int *) nl[0].n_value = 0; -+#endif -+ - srand((unsigned)time(NULL)); - time(&start_time); - time(&idle_time); diff --git a/data/bitchx/port.diff b/data/bitchx/port.diff deleted file mode 100644 index eb19e9bb4..000000000 --- a/data/bitchx/port.diff +++ /dev/null @@ -1,72 +0,0 @@ -diff -ru BitchX/doc/Makefile BitchX+iPhone/doc/Makefile ---- BitchX/doc/Makefile 2004-03-26 06:20:36.000000000 +0000 -+++ BitchX+iPhone/doc/Makefile 2008-03-05 23:22:46.000000000 +0000 -@@ -1,5 +1,5 @@ - --SHELL = /usr/local/bin/bash -+SHELL = /bin/sh - - default: - $(SHELL) ./configure --with-plugins -diff -ru BitchX/source/ctcp.c BitchX+iPhone/source/ctcp.c ---- BitchX/source/ctcp.c 2003-05-27 07:00:22.000000000 +0000 -+++ BitchX+iPhone/source/ctcp.c 2008-03-05 23:23:27.000000000 +0000 -@@ -176,7 +176,7 @@ - - /* CDE do ops and unban logging */ - --static char *ctcp_type[] = -+char *ctcp_type[] = - { - "PRIVMSG", - "NOTICE" -diff -ru BitchX/source/misc.c BitchX+iPhone/source/misc.c ---- BitchX/source/misc.c 2003-06-11 07:00:42.000000000 +0000 -+++ BitchX+iPhone/source/misc.c 2008-03-05 23:26:27.000000000 +0000 -@@ -59,6 +59,14 @@ - #endif - #include <unistd.h> - -+#define BIND_8_COMPAT -+#include <arpa/nameser.h> -+#include <stdio.h> -+#include <netdb.h> -+#include <resolv.h> -+#include <errno.h> -+#include <arpa/inet.h> -+ - #if defined(sparc) && defined(sun4c) - #include <sys/rusage.h> - #endif -@@ -2601,7 +2609,7 @@ - /* - * Skip over the original question. - */ --#ifndef __QNX__ -+#if 0//ndef __QNX__ - /* QNX doesn't seem to have this function, not sure - * what it does at the moment but I may change this - * in the future. - Brian -diff -ru BitchX/source/term.c BitchX+iPhone/source/term.c ---- BitchX/source/term.c 2003-04-11 01:09:07.000000000 +0000 -+++ BitchX+iPhone/source/term.c 2008-03-05 23:25:10.000000000 +0000 -@@ -92,7 +92,6 @@ - #endif - - extern char *getenv(); --extern char *tparm(); - - /* - * The old code assumed termcap. termcap is almost always present, but on -diff -ru BitchX/source/timer.c BitchX+iPhone/source/timer.c ---- BitchX/source/timer.c 2003-04-11 01:09:07.000000000 +0000 -+++ BitchX+iPhone/source/timer.c 2008-03-05 23:25:32.000000000 +0000 -@@ -148,7 +148,7 @@ - * This is put here on purpose -- we dont want any of the above functions - * to have any knowledge of this struct. - */ --static TimerList *PendingTimers; -+TimerList *PendingTimers; - static char *schedule_timer (TimerList *ntimer); - - static char *current_exec_timer = empty_string; |