summaryrefslogtreecommitdiff
path: root/chat/psi/patches
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2002-08-04 16:52:45 +0000
committerjdolecek <jdolecek@pkgsrc.org>2002-08-04 16:52:45 +0000
commit6fe5db82545eb3a92fa3d359471b912f41291ca2 (patch)
tree966e632b83b9a43e916b8ea6e55946edfb267ae4 /chat/psi/patches
parent627e144c341b29257c0ba19249fde87c715d79ae (diff)
downloadpkgsrc-6fe5db82545eb3a92fa3d359471b912f41291ca2.tar.gz
PSI 0.8.6 - advanced graphical Jabber instant messaging client
Jabber is an open, XML based Instant Messaging system that seeks to be the standard IM network. It is a distributed system, created from the ground up, not relying upon central servers. Thus, anyone can run a server, and they are all interoperable. For assistance with migrating users to Jabber, many servers feature transports for interoperating with other IM systems. Features: * Message (ICQ-style) and Chat (AIM-style) modes * Drag and drop to send to multiple contacts * Full Unicode support * Secure connections * Saving contact list locally, and server sync on login * Icon Themes * Agent registration and searching * Retrieving and updating User Info * Sound support for incoming events * Auto-away after a configurable amount of time * Tray/dock icon for KDE/GNOME environments * Language plugins
Diffstat (limited to 'chat/psi/patches')
-rw-r--r--chat/psi/patches/patch-aa48
-rw-r--r--chat/psi/patches/patch-ab13
-rw-r--r--chat/psi/patches/patch-ac11
-rw-r--r--chat/psi/patches/patch-ad19
4 files changed, 91 insertions, 0 deletions
diff --git a/chat/psi/patches/patch-aa b/chat/psi/patches/patch-aa
new file mode 100644
index 00000000000..2579b8dc3b9
--- /dev/null
+++ b/chat/psi/patches/patch-aa
@@ -0,0 +1,48 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/08/04 16:52:45 jdolecek Exp $
+
+--- install.sh.orig Mon Jul 8 20:13:11 2002
++++ install.sh Sun Aug 4 13:54:04 2002
+@@ -1,33 +1,33 @@
+-#!/bin/sh
++#!/bin/sh -x
+
+-if [ ! -f ./psi ]; then
++if [ ! -f src/psi ]; then
+ echo "The program 'psi' doesn't exist. Perhaps this is a source package and you have not yet compiled the program? Go read the INSTALL file."
+ exit 1
+ fi
+
+-export PSIDIR=/usr/local/psi
++PSIDIR=$PREFIX/psi
+
+ echo [Installing Psi]
+
+ mkdir -p $PSIDIR
+
+-echo Copying program files to /usr/local/psi
++echo Copying program files to $PSIDIR
+ cp -r ./image $PSIDIR
+ cp -r ./iconsets $PSIDIR
+ cp -r ./sound $PSIDIR
+ cp -r ./certs $PSIDIR
+
+-cp ./psi $PSIDIR
++cp src/psi $PSIDIR
+ cp ./README $PSIDIR
+ cp ./COPYING $PSIDIR
+
+-mkdir -p /usr/local/bin
+-if [ -e /usr/local/bin/psi ]; then
+- rm /usr/local/bin/psi
++mkdir -p $PREFIX/bin
++if [ -e $PREFIX/bin/psi ]; then
++ rm $PREFIX/bin/psi
+ fi
+
+-echo Putting a link in /usr/local/bin
+-ln -s $PSIDIR/psi /usr/local/bin/psi
++echo Putting a link in $PREFIX/bin
++ln -s $PSIDIR/psi $PREFIX/bin/psi
+
+ echo [Finished]
+
diff --git a/chat/psi/patches/patch-ab b/chat/psi/patches/patch-ab
new file mode 100644
index 00000000000..feeca7b197f
--- /dev/null
+++ b/chat/psi/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2002/08/04 16:52:45 jdolecek Exp $
+
+--- src/psi.pro.orig Mon Jul 8 20:13:11 2002
++++ src/psi.pro Fri Aug 2 10:57:52 2002
+@@ -141,7 +141,7 @@
+ # System-specific build settings
+ unix:!mac {
+ INCLUDEPATH += /usr/X11R6/include
+- LIBS += -lXss -lz
++ LIBS += -lXss -lz -lqt-mt
+ SOURCES += trayicon_x11.cpp
+ }
+
diff --git a/chat/psi/patches/patch-ac b/chat/psi/patches/patch-ac
new file mode 100644
index 00000000000..668585e55f4
--- /dev/null
+++ b/chat/psi/patches/patch-ac
@@ -0,0 +1,11 @@
+--- src/common.cpp.orig Wed Jun 12 13:03:22 2002
++++ src/common.cpp Tue Jun 11 23:24:46 2002
+@@ -1130,7 +1130,7 @@
+ #ifdef Q_WS_X11
+ QString getResourcesDir()
+ {
+- return "/usr/local/psi";
++ return @PREFIX@"/psi";
+ }
+
+ QString getHomeDir()
diff --git a/chat/psi/patches/patch-ad b/chat/psi/patches/patch-ad
new file mode 100644
index 00000000000..09eac75e122
--- /dev/null
+++ b/chat/psi/patches/patch-ad
@@ -0,0 +1,19 @@
+$NetBSD: patch-ad,v 1.1.1.1 2002/08/04 16:52:45 jdolecek Exp $
+
+--- src/minizip/unzip.h.orig Mon Jul 29 19:53:00 2002
++++ src/minizip/unzip.h Mon Jul 29 19:54:16 2002
+@@ -49,6 +49,14 @@
+ #include "zlib.h"
+ #endif
+
++#ifndef OF
++# ifdef STDC
++# define OF(x) x
++# else
++# define OF(x)
++# endif
++#endif
++
+ #if defined(STRICTUNZIP) || defined(STRICTZIPUNZIP)
+ /* like the STRICT of WIN32, we define a pointer that cannot be converted
+ from (void*) without cast */