mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
- Update to version 0.9.2
PR: ports/67840 Submitted by: maintainer
This commit is contained in:
parent
3db850ffd5
commit
e7d4ffb1f0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=111296
8 changed files with 38 additions and 118 deletions
|
@ -6,8 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= psi
|
PORTNAME= psi
|
||||||
PORTVERSION= 0.9.1
|
PORTVERSION= 0.9.2
|
||||||
PORTREVISION= 2
|
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
@ -16,7 +15,6 @@ MAINTAINER= eugos@gmx.net
|
||||||
COMMENT= A Qt-based Jabber client
|
COMMENT= A Qt-based Jabber client
|
||||||
|
|
||||||
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
||||||
|
|
||||||
RUN_DEPENDS= ${X11BASE}/lib/plugins/crypto/libqca-tls.so:${PORTSDIR}/security/qca-tls
|
RUN_DEPENDS= ${X11BASE}/lib/plugins/crypto/libqca-tls.so:${PORTSDIR}/security/qca-tls
|
||||||
|
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (psi-0.9.1.tar.bz2) = 7057b61518e1b1ebd732a95c265a3b76
|
MD5 (psi-0.9.2.tar.bz2) = e29f90aea7d839f2a70e4a6e77e95a70
|
||||||
SIZE (psi-0.9.1.tar.bz2) = 930227
|
SIZE (psi-0.9.2.tar.bz2) = 1154392
|
||||||
|
|
|
@ -1,50 +1,11 @@
|
||||||
$FreeBSD$
|
$FreeBSD$
|
||||||
|
|
||||||
Hack configure to eat autogenerated qt options, to fix a bashism (type -p),
|
Hack configure to eat autogenerated qt options
|
||||||
to avoid using expr, and to do the main Makefile make(1) compatible.
|
and to do the main Makefile make(1) compatible.
|
||||||
|
|
||||||
--- configure.orig Wed Dec 10 01:10:03 2003
|
--- configure.orig Fri Jun 11 13:49:06 2004
|
||||||
+++ configure Sat Jan 10 15:52:00 2004
|
+++ configure Fri Jun 11 14:25:01 2004
|
||||||
@@ -27,32 +27,32 @@
|
@@ -82,6 +82,8 @@
|
||||||
while [ $# -gt 0 ]; do
|
|
||||||
case "$1" in
|
|
||||||
--prefix=*)
|
|
||||||
- PREFIX=`expr "${1}" : "--prefix=\(.*\)"`
|
|
||||||
+ PREFIX="${1#--prefix=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--bindir=*)
|
|
||||||
- BINDIR=`expr "${1}" : "--bindir=\(.*\)"`
|
|
||||||
+ BINDIR="${1#--bindir=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--libdir=*)
|
|
||||||
- LIBDIR=`expr "${1}" : "--libdir=\(.*\)"`
|
|
||||||
+ LIBDIR="${1#--libdir=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--qtdir=*)
|
|
||||||
- QTDIR=`expr "${1}" : "--qtdir=\(.*\)"`
|
|
||||||
+ QTDIR="${1#--qtdir=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--with-zlib-inc=*)
|
|
||||||
- QC_WITH_ZLIB_INC=`expr "${1}" : "--with-zlib-inc=\(.*\)"`
|
|
||||||
+ QC_WITH_ZLIB_INC="${1#--with-zlib-inc=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--with-zlib-lib=*)
|
|
||||||
- QC_WITH_ZLIB_LIB=`expr "${1}" : "--with-zlib-lib=\(.*\)"`
|
|
||||||
+ QC_WITH_ZLIB_LIB="${1#--with-zlib-lib=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
@@ -81,6 +81,8 @@
|
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--help) show_usage; exit ;;
|
--help) show_usage; exit ;;
|
||||||
|
@ -53,21 +14,13 @@ to avoid using expr, and to do the main Makefile make(1) compatible.
|
||||||
*) show_usage; exit ;;
|
*) show_usage; exit ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
@@ -136,7 +138,7 @@
|
@@ -1035,14 +1037,6 @@
|
||||||
echo Warning: qmake not in \$QTDIR/bin/qmake
|
|
||||||
echo trying to find it in \$PATH
|
|
||||||
fi
|
|
||||||
- qm=`type -p qmake`
|
|
||||||
+ qm=`which qmake`
|
|
||||||
if [ -x "$qm" ]; then
|
|
||||||
if [ "$QC_DEBUG" = "Y" ]; then
|
|
||||||
echo qmake found in $qm
|
|
||||||
@@ -917,13 +919,6 @@
|
|
||||||
echo
|
echo
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
-cat >Makefile.tmp <<EOT
|
-cat >Makefile.tmp <<EOT
|
||||||
-export QTDIR = $QTDIR
|
-export QTDIR = $QTDIR
|
||||||
|
-export PATH = $QTDIR/bin:$PATH
|
||||||
-EOT
|
-EOT
|
||||||
-cat Makefile >> Makefile.tmp
|
-cat Makefile >> Makefile.tmp
|
||||||
-rm -f Makefile
|
-rm -f Makefile
|
||||||
|
|
|
@ -3,6 +3,7 @@ share/psi/COPYING
|
||||||
share/psi/README
|
share/psi/README
|
||||||
share/psi/certs/README
|
share/psi/certs/README
|
||||||
share/psi/certs/rootcert.xml
|
share/psi/certs/rootcert.xml
|
||||||
|
share/psi/designer/libpsiwidgets.so
|
||||||
share/psi/iconsets/emoticons/README
|
share/psi/iconsets/emoticons/README
|
||||||
share/psi/iconsets/emoticons/default/angry.png
|
share/psi/iconsets/emoticons/default/angry.png
|
||||||
share/psi/iconsets/emoticons/default/bat.png
|
share/psi/iconsets/emoticons/default/bat.png
|
||||||
|
@ -55,6 +56,7 @@ share/psi/iconsets/roster/default/chat.png
|
||||||
share/psi/iconsets/roster/default/connect.png
|
share/psi/iconsets/roster/default/connect.png
|
||||||
share/psi/iconsets/roster/default/dnd.png
|
share/psi/iconsets/roster/default/dnd.png
|
||||||
share/psi/iconsets/roster/default/ffc.png
|
share/psi/iconsets/roster/default/ffc.png
|
||||||
|
share/psi/iconsets/roster/default/file.png
|
||||||
share/psi/iconsets/roster/default/groupclose.png
|
share/psi/iconsets/roster/default/groupclose.png
|
||||||
share/psi/iconsets/roster/default/groupempty.png
|
share/psi/iconsets/roster/default/groupempty.png
|
||||||
share/psi/iconsets/roster/default/groupopen.png
|
share/psi/iconsets/roster/default/groupopen.png
|
||||||
|
@ -141,6 +143,7 @@ share/psi/iconsets/system/default/changeacc.png
|
||||||
share/psi/iconsets/system/default/chatclear.png
|
share/psi/iconsets/system/default/chatclear.png
|
||||||
share/psi/iconsets/system/default/close.png
|
share/psi/iconsets/system/default/close.png
|
||||||
share/psi/iconsets/system/default/configure_toolbars.png
|
share/psi/iconsets/system/default/configure_toolbars.png
|
||||||
|
share/psi/iconsets/system/default/download.png
|
||||||
share/psi/iconsets/system/default/edit.png
|
share/psi/iconsets/system/default/edit.png
|
||||||
share/psi/iconsets/system/default/editclear.png
|
share/psi/iconsets/system/default/editclear.png
|
||||||
share/psi/iconsets/system/default/editcopy.png
|
share/psi/iconsets/system/default/editcopy.png
|
||||||
|
@ -148,6 +151,8 @@ share/psi/iconsets/system/default/editcut.png
|
||||||
share/psi/iconsets/system/default/editdelete.png
|
share/psi/iconsets/system/default/editdelete.png
|
||||||
share/psi/iconsets/system/default/editpaste.png
|
share/psi/iconsets/system/default/editpaste.png
|
||||||
share/psi/iconsets/system/default/edittrash.png
|
share/psi/iconsets/system/default/edittrash.png
|
||||||
|
share/psi/iconsets/system/default/eye_blue.png
|
||||||
|
share/psi/iconsets/system/default/filemanager.png
|
||||||
share/psi/iconsets/system/default/groupchat.png
|
share/psi/iconsets/system/default/groupchat.png
|
||||||
share/psi/iconsets/system/default/help.png
|
share/psi/iconsets/system/default/help.png
|
||||||
share/psi/iconsets/system/default/history.png
|
share/psi/iconsets/system/default/history.png
|
||||||
|
@ -181,11 +186,14 @@ share/psi/iconsets/system/default/ssl_yes.png
|
||||||
share/psi/iconsets/system/default/stop.png
|
share/psi/iconsets/system/default/stop.png
|
||||||
share/psi/iconsets/system/default/time.png
|
share/psi/iconsets/system/default/time.png
|
||||||
share/psi/iconsets/system/default/tip.png
|
share/psi/iconsets/system/default/tip.png
|
||||||
|
share/psi/iconsets/system/default/upload.png
|
||||||
share/psi/iconsets/system/default/url.png
|
share/psi/iconsets/system/default/url.png
|
||||||
share/psi/iconsets/system/default/vcard.png
|
share/psi/iconsets/system/default/vcard.png
|
||||||
share/psi/iconsets/system/default/xml.png
|
share/psi/iconsets/system/default/xml.png
|
||||||
share/psi/sound/chat1.wav
|
share/psi/sound/chat1.wav
|
||||||
share/psi/sound/chat2.wav
|
share/psi/sound/chat2.wav
|
||||||
|
share/psi/sound/ft_complete.wav
|
||||||
|
share/psi/sound/ft_incoming.wav
|
||||||
share/psi/sound/offline.wav
|
share/psi/sound/offline.wav
|
||||||
share/psi/sound/online.wav
|
share/psi/sound/online.wav
|
||||||
share/psi/sound/send.wav
|
share/psi/sound/send.wav
|
||||||
|
@ -206,5 +214,6 @@ share/psi/sound/send.wav
|
||||||
@dirrm share/psi/iconsets/emoticons/default
|
@dirrm share/psi/iconsets/emoticons/default
|
||||||
@dirrm share/psi/iconsets/emoticons
|
@dirrm share/psi/iconsets/emoticons
|
||||||
@dirrm share/psi/iconsets
|
@dirrm share/psi/iconsets
|
||||||
|
@dirrm share/psi/designer
|
||||||
@dirrm share/psi/certs
|
@dirrm share/psi/certs
|
||||||
@dirrm share/psi
|
@dirrm share/psi
|
||||||
|
|
|
@ -6,8 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= psi
|
PORTNAME= psi
|
||||||
PORTVERSION= 0.9.1
|
PORTVERSION= 0.9.2
|
||||||
PORTREVISION= 2
|
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
@ -16,7 +15,6 @@ MAINTAINER= eugos@gmx.net
|
||||||
COMMENT= A Qt-based Jabber client
|
COMMENT= A Qt-based Jabber client
|
||||||
|
|
||||||
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
||||||
|
|
||||||
RUN_DEPENDS= ${X11BASE}/lib/plugins/crypto/libqca-tls.so:${PORTSDIR}/security/qca-tls
|
RUN_DEPENDS= ${X11BASE}/lib/plugins/crypto/libqca-tls.so:${PORTSDIR}/security/qca-tls
|
||||||
|
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (psi-0.9.1.tar.bz2) = 7057b61518e1b1ebd732a95c265a3b76
|
MD5 (psi-0.9.2.tar.bz2) = e29f90aea7d839f2a70e4a6e77e95a70
|
||||||
SIZE (psi-0.9.1.tar.bz2) = 930227
|
SIZE (psi-0.9.2.tar.bz2) = 1154392
|
||||||
|
|
|
@ -1,50 +1,11 @@
|
||||||
$FreeBSD$
|
$FreeBSD$
|
||||||
|
|
||||||
Hack configure to eat autogenerated qt options, to fix a bashism (type -p),
|
Hack configure to eat autogenerated qt options
|
||||||
to avoid using expr, and to do the main Makefile make(1) compatible.
|
and to do the main Makefile make(1) compatible.
|
||||||
|
|
||||||
--- configure.orig Wed Dec 10 01:10:03 2003
|
--- configure.orig Fri Jun 11 13:49:06 2004
|
||||||
+++ configure Sat Jan 10 15:52:00 2004
|
+++ configure Fri Jun 11 14:25:01 2004
|
||||||
@@ -27,32 +27,32 @@
|
@@ -82,6 +82,8 @@
|
||||||
while [ $# -gt 0 ]; do
|
|
||||||
case "$1" in
|
|
||||||
--prefix=*)
|
|
||||||
- PREFIX=`expr "${1}" : "--prefix=\(.*\)"`
|
|
||||||
+ PREFIX="${1#--prefix=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--bindir=*)
|
|
||||||
- BINDIR=`expr "${1}" : "--bindir=\(.*\)"`
|
|
||||||
+ BINDIR="${1#--bindir=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--libdir=*)
|
|
||||||
- LIBDIR=`expr "${1}" : "--libdir=\(.*\)"`
|
|
||||||
+ LIBDIR="${1#--libdir=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--qtdir=*)
|
|
||||||
- QTDIR=`expr "${1}" : "--qtdir=\(.*\)"`
|
|
||||||
+ QTDIR="${1#--qtdir=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--with-zlib-inc=*)
|
|
||||||
- QC_WITH_ZLIB_INC=`expr "${1}" : "--with-zlib-inc=\(.*\)"`
|
|
||||||
+ QC_WITH_ZLIB_INC="${1#--with-zlib-inc=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
--with-zlib-lib=*)
|
|
||||||
- QC_WITH_ZLIB_LIB=`expr "${1}" : "--with-zlib-lib=\(.*\)"`
|
|
||||||
+ QC_WITH_ZLIB_LIB="${1#--with-zlib-lib=}"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
@@ -81,6 +81,8 @@
|
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--help) show_usage; exit ;;
|
--help) show_usage; exit ;;
|
||||||
|
@ -53,21 +14,13 @@ to avoid using expr, and to do the main Makefile make(1) compatible.
|
||||||
*) show_usage; exit ;;
|
*) show_usage; exit ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
@@ -136,7 +138,7 @@
|
@@ -1035,14 +1037,6 @@
|
||||||
echo Warning: qmake not in \$QTDIR/bin/qmake
|
|
||||||
echo trying to find it in \$PATH
|
|
||||||
fi
|
|
||||||
- qm=`type -p qmake`
|
|
||||||
+ qm=`which qmake`
|
|
||||||
if [ -x "$qm" ]; then
|
|
||||||
if [ "$QC_DEBUG" = "Y" ]; then
|
|
||||||
echo qmake found in $qm
|
|
||||||
@@ -917,13 +919,6 @@
|
|
||||||
echo
|
echo
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
-cat >Makefile.tmp <<EOT
|
-cat >Makefile.tmp <<EOT
|
||||||
-export QTDIR = $QTDIR
|
-export QTDIR = $QTDIR
|
||||||
|
-export PATH = $QTDIR/bin:$PATH
|
||||||
-EOT
|
-EOT
|
||||||
-cat Makefile >> Makefile.tmp
|
-cat Makefile >> Makefile.tmp
|
||||||
-rm -f Makefile
|
-rm -f Makefile
|
||||||
|
|
|
@ -3,6 +3,7 @@ share/psi/COPYING
|
||||||
share/psi/README
|
share/psi/README
|
||||||
share/psi/certs/README
|
share/psi/certs/README
|
||||||
share/psi/certs/rootcert.xml
|
share/psi/certs/rootcert.xml
|
||||||
|
share/psi/designer/libpsiwidgets.so
|
||||||
share/psi/iconsets/emoticons/README
|
share/psi/iconsets/emoticons/README
|
||||||
share/psi/iconsets/emoticons/default/angry.png
|
share/psi/iconsets/emoticons/default/angry.png
|
||||||
share/psi/iconsets/emoticons/default/bat.png
|
share/psi/iconsets/emoticons/default/bat.png
|
||||||
|
@ -55,6 +56,7 @@ share/psi/iconsets/roster/default/chat.png
|
||||||
share/psi/iconsets/roster/default/connect.png
|
share/psi/iconsets/roster/default/connect.png
|
||||||
share/psi/iconsets/roster/default/dnd.png
|
share/psi/iconsets/roster/default/dnd.png
|
||||||
share/psi/iconsets/roster/default/ffc.png
|
share/psi/iconsets/roster/default/ffc.png
|
||||||
|
share/psi/iconsets/roster/default/file.png
|
||||||
share/psi/iconsets/roster/default/groupclose.png
|
share/psi/iconsets/roster/default/groupclose.png
|
||||||
share/psi/iconsets/roster/default/groupempty.png
|
share/psi/iconsets/roster/default/groupempty.png
|
||||||
share/psi/iconsets/roster/default/groupopen.png
|
share/psi/iconsets/roster/default/groupopen.png
|
||||||
|
@ -141,6 +143,7 @@ share/psi/iconsets/system/default/changeacc.png
|
||||||
share/psi/iconsets/system/default/chatclear.png
|
share/psi/iconsets/system/default/chatclear.png
|
||||||
share/psi/iconsets/system/default/close.png
|
share/psi/iconsets/system/default/close.png
|
||||||
share/psi/iconsets/system/default/configure_toolbars.png
|
share/psi/iconsets/system/default/configure_toolbars.png
|
||||||
|
share/psi/iconsets/system/default/download.png
|
||||||
share/psi/iconsets/system/default/edit.png
|
share/psi/iconsets/system/default/edit.png
|
||||||
share/psi/iconsets/system/default/editclear.png
|
share/psi/iconsets/system/default/editclear.png
|
||||||
share/psi/iconsets/system/default/editcopy.png
|
share/psi/iconsets/system/default/editcopy.png
|
||||||
|
@ -148,6 +151,8 @@ share/psi/iconsets/system/default/editcut.png
|
||||||
share/psi/iconsets/system/default/editdelete.png
|
share/psi/iconsets/system/default/editdelete.png
|
||||||
share/psi/iconsets/system/default/editpaste.png
|
share/psi/iconsets/system/default/editpaste.png
|
||||||
share/psi/iconsets/system/default/edittrash.png
|
share/psi/iconsets/system/default/edittrash.png
|
||||||
|
share/psi/iconsets/system/default/eye_blue.png
|
||||||
|
share/psi/iconsets/system/default/filemanager.png
|
||||||
share/psi/iconsets/system/default/groupchat.png
|
share/psi/iconsets/system/default/groupchat.png
|
||||||
share/psi/iconsets/system/default/help.png
|
share/psi/iconsets/system/default/help.png
|
||||||
share/psi/iconsets/system/default/history.png
|
share/psi/iconsets/system/default/history.png
|
||||||
|
@ -181,11 +186,14 @@ share/psi/iconsets/system/default/ssl_yes.png
|
||||||
share/psi/iconsets/system/default/stop.png
|
share/psi/iconsets/system/default/stop.png
|
||||||
share/psi/iconsets/system/default/time.png
|
share/psi/iconsets/system/default/time.png
|
||||||
share/psi/iconsets/system/default/tip.png
|
share/psi/iconsets/system/default/tip.png
|
||||||
|
share/psi/iconsets/system/default/upload.png
|
||||||
share/psi/iconsets/system/default/url.png
|
share/psi/iconsets/system/default/url.png
|
||||||
share/psi/iconsets/system/default/vcard.png
|
share/psi/iconsets/system/default/vcard.png
|
||||||
share/psi/iconsets/system/default/xml.png
|
share/psi/iconsets/system/default/xml.png
|
||||||
share/psi/sound/chat1.wav
|
share/psi/sound/chat1.wav
|
||||||
share/psi/sound/chat2.wav
|
share/psi/sound/chat2.wav
|
||||||
|
share/psi/sound/ft_complete.wav
|
||||||
|
share/psi/sound/ft_incoming.wav
|
||||||
share/psi/sound/offline.wav
|
share/psi/sound/offline.wav
|
||||||
share/psi/sound/online.wav
|
share/psi/sound/online.wav
|
||||||
share/psi/sound/send.wav
|
share/psi/sound/send.wav
|
||||||
|
@ -206,5 +214,6 @@ share/psi/sound/send.wav
|
||||||
@dirrm share/psi/iconsets/emoticons/default
|
@dirrm share/psi/iconsets/emoticons/default
|
||||||
@dirrm share/psi/iconsets/emoticons
|
@dirrm share/psi/iconsets/emoticons
|
||||||
@dirrm share/psi/iconsets
|
@dirrm share/psi/iconsets
|
||||||
|
@dirrm share/psi/designer
|
||||||
@dirrm share/psi/certs
|
@dirrm share/psi/certs
|
||||||
@dirrm share/psi
|
@dirrm share/psi
|
||||||
|
|
Loading…
Add table
Reference in a new issue