diff options
Diffstat (limited to 'net-im/jabber-pyicq/files')
-rw-r--r-- | net-im/jabber-pyicq/files/README.external.in | 14 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/README.jabberd14.in | 39 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/README.jabberd2.in | 11 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/jabber-pyicq-transport.in | 31 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/patch-src__contact.py | 11 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/patch-src__imgmanip.py | 11 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/patch-tools__infodump.py | 11 | ||||
-rw-r--r-- | net-im/jabber-pyicq/files/pkg-message.in | 24 |
8 files changed, 0 insertions, 152 deletions
diff --git a/net-im/jabber-pyicq/files/README.external.in b/net-im/jabber-pyicq/files/README.external.in deleted file mode 100644 index 9ae3316ff1d5..000000000000 --- a/net-im/jabber-pyicq/files/README.external.in +++ /dev/null @@ -1,14 +0,0 @@ -# PyICQ-t and external jabber servers on FreeBSD -# README by Martin Matuska <martin_at_matuska_dot_org> - -If you did not select WITH_JABBER, WITH_JABBERD or WITH_EJABBERD, you may want -to use another or external jabber server. To run the transport locally, you may -need to create the pid and spool directories manually. - -Default pahts of the current installation are: -%%JABBER_PIDDIR%% -%%JABBER_SPOOLDIR%% - -You should make these paths writable for the service user. -Default service user for this installation: -%%JABBER_USER%% diff --git a/net-im/jabber-pyicq/files/README.jabberd14.in b/net-im/jabber-pyicq/files/README.jabberd14.in deleted file mode 100644 index 09ad432a9a03..000000000000 --- a/net-im/jabber-pyicq/files/README.jabberd14.in +++ /dev/null @@ -1,39 +0,0 @@ -# PyICQ-t and jabberd14 (net-im/jabber) on FreeBSD -# README by Martin Matuska <martin_at_matuska_dot_org> - -The sample configuration file for jabberd14 may be located in: -%%TARGETDIR%%/etc/jabber.xml.sample - -Please make all necessary changes to your configuration file which may be: -%%TARGETDIR%%/etc/jabber.xml - -NOTE: if you want this service to be accessible from other servers, - change any 'icq.localhost' listed below to a fully qualified domain name! - Please make sure that your directives are _NOT_ in an XML comment: there - are many multi-line comments. - -To activate the ICQ transport for your Jabber server, -add the following to your configuration file and adjust to your settings -(around line 921 in the sample configuration file): -------------------------------------------------------------------------------- - - <service id="icq.localhost"> - <accept> - <ip>127.0.0.1</ip> - <port>5347</port> - <secret>password</secret> - </accept> - </service> - -------------------------------------------------------------------------------- -Add this section to the browse area of the jsm to advertise it to -your users (around line 382 of the sample config): -------------------------------------------------------------------------------- - - <item category="gateway" type="icq" jid="icq.localhost" name="ICQ Transport"> - <ns>jabber:iq:gateway</ns> - <ns>jabber:iq:register</ns> - </item> - -------------------------------------------------------------------------------- -Be sure to restart your server after reconfiguring. diff --git a/net-im/jabber-pyicq/files/README.jabberd2.in b/net-im/jabber-pyicq/files/README.jabberd2.in deleted file mode 100644 index 7b5c49f6495c..000000000000 --- a/net-im/jabber-pyicq/files/README.jabberd2.in +++ /dev/null @@ -1,11 +0,0 @@ -# PyICQ-t and jabberd2 (net-im/jabberd) on FreeBSD -# README by Martin Matuska <martin_at_matuska_dot_org> - -The configuration for jabberd2 is located in: -%%TARGETDIR%%/etc/jabberd - -If you are using Jabberd2 then you shouldn't have to do much configuration. -Make sure the 'mainServer' setting is the IP or DNS of your Jabber server, and -leave the 'port' setting alone. Double-check that the secret for legacy -components in router.xml (for Jabberd2) is the same as the secret setting in -config.py. That should be all. You don't even need to restart Jabberd2. diff --git a/net-im/jabber-pyicq/files/jabber-pyicq-transport.in b/net-im/jabber-pyicq/files/jabber-pyicq-transport.in deleted file mode 100644 index f632d68bd6b9..000000000000 --- a/net-im/jabber-pyicq/files/jabber-pyicq-transport.in +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# PROVIDE: jabber_pyicq -# REQUIRE: DAEMON %%JABBER_REQUIRE%% -# KEYWORD: shutdown -# -# Define these jabber_pyicq_* variables in one of these files: -# /etc/rc.conf -# /etc/rc.conf.local -# - -. /etc/rc.subr - -name="jabber_pyicq" -rcvar=jabber_pyicq_enable - -load_rc_config $name - -: ${jabber_pyicq_enable="NO"} -: ${jabber_pyicq_dir="%%PREFIX%%/lib/jabber/pyicq"} -: ${jabber_pyicq_piddir="%%JABBER_PIDDIR%%"} -: ${jabber_pyicq_user="%%JABBER_USER%%"} - -pidfile="${jabber_pyicq_piddir}/PyICQt.pid" -command_interpreter="%%PYTHON_CMD%%" -command="${jabber_pyicq_dir}/PyICQt.py" -command_args="-b -o pid=${pidfile}" - -run_rc_command "$1" diff --git a/net-im/jabber-pyicq/files/patch-src__contact.py b/net-im/jabber-pyicq/files/patch-src__contact.py deleted file mode 100644 index c9ca2e0964a4..000000000000 --- a/net-im/jabber-pyicq/files/patch-src__contact.py +++ /dev/null @@ -1,11 +0,0 @@ ---- src/contact.py.orig 2014-10-06 16:48:44 UTC -+++ src/contact.py -@@ -13,7 +13,7 @@ - import globals - import base64 - if not config.disableAvatars: -- import Image -+ from PIL import Image - import StringIO - - diff --git a/net-im/jabber-pyicq/files/patch-src__imgmanip.py b/net-im/jabber-pyicq/files/patch-src__imgmanip.py deleted file mode 100644 index d42cb886d658..000000000000 --- a/net-im/jabber-pyicq/files/patch-src__imgmanip.py +++ /dev/null @@ -1,11 +0,0 @@ ---- src/imgmanip.py.orig 2014-10-06 16:49:20 UTC -+++ src/imgmanip.py -@@ -5,7 +5,7 @@ - - if not config.disableAvatars: - try: -- import Image -+ from PIL import Image - import StringIO - - def convertToPNG(imageData): diff --git a/net-im/jabber-pyicq/files/patch-tools__infodump.py b/net-im/jabber-pyicq/files/patch-tools__infodump.py deleted file mode 100644 index 0be2ae5ecb93..000000000000 --- a/net-im/jabber-pyicq/files/patch-tools__infodump.py +++ /dev/null @@ -1,11 +0,0 @@ ---- tools/infodump.py.orig 2014-10-06 16:48:04 UTC -+++ tools/infodump.py -@@ -41,7 +41,7 @@ - print "Nevow Version: Unknown or Not Installed" - - try: -- from Image import VERSION -+ from PIL.Image import VERSION - print "Python Imaging Library (PIL) Version: " + VERSION - except: - print "Python Imaging Library (PIL) Version: Unknown or Not Installed" diff --git a/net-im/jabber-pyicq/files/pkg-message.in b/net-im/jabber-pyicq/files/pkg-message.in deleted file mode 100644 index f8d45b91a727..000000000000 --- a/net-im/jabber-pyicq/files/pkg-message.in +++ /dev/null @@ -1,24 +0,0 @@ -****************************************************************************** -Remember to edit %%PREFIX%%/etc/jabber-pyicq.xml to suit your needs. - -* The 'jid' setting should be what ID you want PyICQt to take on the network. -* The 'mainServer' setting should be the IP address or DNS of the main Jabberd - server. -* The 'secret' setting should match the secret specified for component - connections in your main Jabberd server. -* The 'port' setting is the port that PyICQt is to connect to (more details on - this below. -* You can also turn on debugging options, and customise some of the text that - is sent to the users in this file. - -Please read instructions for different jabber daemons you desire to use: -- jabberd14 (net-im/jabber): %%DOCSDIR%%/README.jabberd14 -- jabberd2 (net-im/jabberd): %%DOCSDIR%%/README.jabberd2 - -If you did not select WITH_JABBER, WITH_JABBERD or WITH_EJABBERD, you may want -to use another or an external jabber server. Please read instructions from: -%%DOCSDIR%%/README.external - -If you are using MySQL storage, sample database script can be found in: -%%EXAMPLESDIR%%/db-setup.mysql -****************************************************************************** |