diff options
Diffstat (limited to 'net-im/jabber/files')
-rw-r--r-- | net-im/jabber/files/jabberd.sh | 27 | ||||
-rw-r--r-- | net-im/jabber/files/patch-aa | 11 | ||||
-rw-r--r-- | net-im/jabber/files/patch-ab | 53 | ||||
-rw-r--r-- | net-im/jabber/files/patch-ac | 11 | ||||
-rw-r--r-- | net-im/jabber/files/patch-ad | 50 | ||||
-rw-r--r-- | net-im/jabber/files/patch-ae | 19 | ||||
-rw-r--r-- | net-im/jabber/files/patch-af | 19 | ||||
-rw-r--r-- | net-im/jabber/files/patch-ag | 12 |
8 files changed, 0 insertions, 202 deletions
diff --git a/net-im/jabber/files/jabberd.sh b/net-im/jabber/files/jabberd.sh deleted file mode 100644 index 5fe6dfd4c06b..000000000000 --- a/net-im/jabber/files/jabberd.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/jabberd\.sh\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi -user=jabber -rundir=/tmp -out=/var/log/jabber.log -hostname=`/bin/hostname` - -export PATH=/bin:/usr/bin:${PREFIX}/bin -umask 077 - -test -x ${PREFIX}/bin/jabberd || exit 1 -echo -n " jabberd" -cd ${rundir} || exit - -arg=${1:-start} -case $arg in -start) - su -f -m ${user} -c "jabberd -h ${hostname} -c ${PREFIX}/etc/jabber.xml" >${out} 2>&1 &;; - -stop) - killall jabberd; - rm -f /var/tmp/jabber.pid; -esac diff --git a/net-im/jabber/files/patch-aa b/net-im/jabber/files/patch-aa deleted file mode 100644 index 46021cd44f7b..000000000000 --- a/net-im/jabber/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sat Feb 3 05:06:24 2001 -+++ configure Sat Feb 10 23:46:59 2001 -@@ -32,7 +32,7 @@ - LDFLAGS="$LDFLAGS" - LIBS="$LIBS" - XLDFLAGS="$XLDFLAGS " --JHOME=`pwd` -+JHOME='${PREFIX}/lib/jabber' - - ## - # Print a cool header diff --git a/net-im/jabber/files/patch-ab b/net-im/jabber/files/patch-ab deleted file mode 100644 index e3c1080d575f..000000000000 --- a/net-im/jabber/files/patch-ab +++ /dev/null @@ -1,53 +0,0 @@ ---- Makefile.orig Sun Jan 21 05:32:48 2001 -+++ Makefile Sat Jun 16 14:40:48 2001 -@@ -4,6 +4,15 @@ - include platform-settings - - SUBDIRS=pthsock xdb_file dnsrv jsm dialback jabberd -+SUBDIRS+=aim-transport -+SUBDIRS+=conference -+SUBDIRS+=icq-transport -+SUBDIRS+=irc-transport -+SUBDIRS+=jud -+SUBDIRS+=msn-transport -+SUBDIRS+=yahoo-transport -+ -+ - - all: all-recursive - -@@ -13,8 +22,33 @@ - - single: single-recursive - -+LIBDIR=${PREFIX}/lib/jabber - install: -- printf "\n\nNo actual make install, you just run it out of the directory!\n" -+ @install -c jabberd/jabberd ${PREFIX}/bin -+ @install -c jabber.xml ${PREFIX}/etc/jabber.xml.sample -+ @install -d ${LIBDIR}/jsm -+ @install -c jsm/jsm.so ${LIBDIR}/jsm -+ @install -d ${LIBDIR}/xdb_file -+ @install -c xdb_file/xdb_file.so ${LIBDIR}/xdb_file -+ @install -d ${LIBDIR}/pthsock -+ @install -c pthsock/pthsock_client.so ${LIBDIR}/pthsock -+ @install -d ${LIBDIR}/dnsrv -+ @install -c dnsrv/dnsrv.so ${LIBDIR}/dnsrv -+ @install -d ${LIBDIR}/dialback -+ @install -c dialback/dialback.so ${LIBDIR}/dialback -+ -+ @install -d ${LIBDIR}/aim-transport -+ @install -c aim-transport/src/aimtrans.so ${LIBDIR}/aim-transport -+ @install -d ${LIBDIR}/conference -+ @install -c conference/conference.so ${LIBDIR}/conference -+ @install -d ${LIBDIR}/icq-transport -+ @install -c icq-transport/icqtrans.so ${LIBDIR}/icq-transport -+ @install -d ${LIBDIR}/irc-transport -+ @install -c irc-transport/src/irc_transport.so ${LIBDIR}/irc-transport -+ @install -d ${LIBDIR}/msn-transport -+ @install -c msn-transport/msntrans.so ${LIBDIR}/msn-transport -+ @install -d ${LIBDIR}/yahoo-transport -+ @install -c yahoo-transport/src/yahootrans.so ${LIBDIR}/yahoo-transport - - all-local: - diff --git a/net-im/jabber/files/patch-ac b/net-im/jabber/files/patch-ac deleted file mode 100644 index 45e15e08afaa..000000000000 --- a/net-im/jabber/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- jabber.xml.orig Sat Feb 3 22:46:56 2001 -+++ jabber.xml Sun Feb 11 01:19:01 2001 -@@ -576,7 +576,7 @@ - <!-- - This specifies the file to store the pid of the process in. - --> -- <pidfile>./jabber.pid</pidfile> -+ <pidfile>/var/tmp/jabber.pid</pidfile> - - - </jabber> diff --git a/net-im/jabber/files/patch-ad b/net-im/jabber/files/patch-ad deleted file mode 100644 index 63266c9a12eb..000000000000 --- a/net-im/jabber/files/patch-ad +++ /dev/null @@ -1,50 +0,0 @@ ---- jabber.xml.orig Sun Feb 11 17:24:48 2001 -+++ jabber.xml Sun Feb 11 17:26:23 2001 -@@ -41,6 +41,10 @@ - Multiple <host/> entries are allowed - each one is for a - separate virtual server. Note that each host entry must - be on one line, the server doesn't like it otherwise! :) -+ -+ Currently on FreeBSD jabberd is started with the -h option -+ from /usr/local/etc/rc.d/jabberd.sh. You'll need to modify -+ this before changing below. - --> - - <host><jabberd:cmdline flag="h">localhost</jabberd:cmdline></host> -@@ -193,7 +197,9 @@ - entry for <host/> above. - --> - -+ <!-- - <update><jabberd:cmdline flag="h">localhost</jabberd:cmdline></update> -+ --> - - <!-- - This enables the server to automatically update the -@@ -298,7 +304,7 @@ - <xdb_file>./xdb_file/xdb_file.so</xdb_file> - </load> - <xdb_file xmlns="jabber:config:xdb_file"> -- <spool><jabberd:cmdline flag='s'>./spool</jabberd:cmdline></spool> -+ <spool><jabberd:cmdline flag='s'>/var/spool/jabber</jabberd:cmdline></spool> - </xdb_file> - </xdb> - -@@ -357,7 +363,7 @@ - <host/> - <logtype/> - <format>%d: [%t] (%h): %s</format> -- <file>error.log</file> -+ <file>/var/log/jabber.error</file> - <stderr/> - </log> - -@@ -370,7 +376,7 @@ - <host/> - <logtype>record</logtype> - <format>%d %h %s</format> -- <file>record.log</file> -+ <file>/var/log/jabber.record</file> - </log> - - <!-- The following two services are for handling server-to-server traffic. --> diff --git a/net-im/jabber/files/patch-ae b/net-im/jabber/files/patch-ae deleted file mode 100644 index c07658cca85c..000000000000 --- a/net-im/jabber/files/patch-ae +++ /dev/null @@ -1,19 +0,0 @@ ---- irc-transport/src/Makefile.in.orig Wed Feb 7 18:31:02 2001 -+++ irc-transport/src/Makefile.in Sat Jun 16 13:38:46 2001 -@@ -31,6 +31,7 @@ - mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include -+localinclude = /usr/local/include - - DESTDIR = - -@@ -72,7 +73,7 @@ - VERSION = @VERSION@ - - CFLAGS = -g -fPIC -shared --INCLUDES = -I$(JABBERD_INC) -I$(top_builddir)/include -+INCLUDES = -I$(JABBERD_INC) -I$(top_builddir)/include -I$(includedir) -I$(localinclude) - bin_PROGRAMS = irc_transport.so - - irc_transport_so_SOURCES = util.c init.c irc_in.c irc_out.c diff --git a/net-im/jabber/files/patch-af b/net-im/jabber/files/patch-af deleted file mode 100644 index 78b739541596..000000000000 --- a/net-im/jabber/files/patch-af +++ /dev/null @@ -1,19 +0,0 @@ ---- yahoo-transport/src/Makefile.in.orig Wed Feb 7 18:15:42 2001 -+++ yahoo-transport/src/Makefile.in Sat Jun 16 14:17:47 2001 -@@ -31,6 +31,7 @@ - mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include -+localinclude = /usr/local/include - - DESTDIR = - -@@ -72,7 +73,7 @@ - - CC = gcc - CFLAGS = -g -Wall -fPIC --INCLUDES = -I$(JABBERD_INC) -I$(includedir) -I$(top_builddir)/include -+INCLUDES = -I$(JABBERD_INC) -I$(top_builddir)/include -I$(includedir) -I$(localinclude) - - bin_PROGRAMS = yahootrans.so - diff --git a/net-im/jabber/files/patch-ag b/net-im/jabber/files/patch-ag deleted file mode 100644 index f855814c10ff..000000000000 --- a/net-im/jabber/files/patch-ag +++ /dev/null @@ -1,12 +0,0 @@ ---- msn-transport/Makefile.orig Mon Feb 5 09:25:59 2001 -+++ msn-transport/Makefile Tue Sep 4 08:12:05 2001 -@@ -1,7 +1,7 @@ - include ../platform-settings - --CC=gcc --CFLAGS:=$(CFLAGS) $(DEFINES) -I../jabberd/ -Wall -g -O2 -+#CC=gcc -+CFLAGS:=$(CFLAGS) $(DEFINES) -I../jabberd/ # -Wall -g -O2 - - msntrans_HEADERS=msntrans.h ../jabberd/jabberd.h - |