From 963be05bd51d05d9f6b3257a236b44c5888e66d9 Mon Sep 17 00:00:00 2001 From: Dave Woodfall Date: Fri, 13 Jul 2018 23:06:00 +0100 Subject: [PATCH] network/psi-plus: Added (development branch of Psi IM client). Signed-off-by: David Spencer --- network/psi-plus/README | 13 ++++ network/psi-plus/doinst.sh | 8 +++ network/psi-plus/psi-plus.SlackBuild | 94 ++++++++++++++++++++++++++++ network/psi-plus/psi-plus.info | 10 +++ network/psi-plus/slack-desc | 19 ++++++ 5 files changed, 144 insertions(+) create mode 100644 network/psi-plus/README create mode 100644 network/psi-plus/doinst.sh create mode 100644 network/psi-plus/psi-plus.SlackBuild create mode 100644 network/psi-plus/psi-plus.info create mode 100644 network/psi-plus/slack-desc diff --git a/network/psi-plus/README b/network/psi-plus/README new file mode 100644 index 0000000000..e970a323ba --- /dev/null +++ b/network/psi-plus/README @@ -0,0 +1,13 @@ +Development branch of Psi XMPP client by psi-dev@conference.jabber.ru + +Note that this is intended for advanced users and developers. + +In 2009 a Psi fork named Psi+ was started. Project purposes are: implementation +of new features, writing of patches and plugins for transferring them to +upstream. As of 2017 the most of active Psi+ developers have become official +Psi developers, but Psi+ still has a number of unique features. From developers +point of view Psi+ is just a development branch of Psi IM client which is +hosted at separate git repositories and for which rolling release development +model is used. + +Note that this can coexist with the stable Psi package. diff --git a/network/psi-plus/doinst.sh b/network/psi-plus/doinst.sh new file mode 100644 index 0000000000..c64f890d3d --- /dev/null +++ b/network/psi-plus/doinst.sh @@ -0,0 +1,8 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/gtk-update-icon-cache ] \ + && [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 +fi diff --git a/network/psi-plus/psi-plus.SlackBuild b/network/psi-plus/psi-plus.SlackBuild new file mode 100644 index 0000000000..a0ef4dfba2 --- /dev/null +++ b/network/psi-plus/psi-plus.SlackBuild @@ -0,0 +1,94 @@ +#!/bin/sh + +# Slackware build script for psi-plus + +# Copyright 2010-2017 Eugene Wissner, Dachau, Germany +# Modifications for psi-plus copyright 2018 Dave Woodfall +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=psi-plus +VERSION=${VERSION:-1.3.397} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/$TAG} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-snapshots-$VERSION +tar xvf $CWD/$PRGNAM-snapshots-$VERSION.tar.gz +cd $PRGNAM-snapshots-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +./configure \ + --prefix=/usr \ + --qtdir=/usr/lib$LIBDIRSUFFIX/qt5 + +QMAKE_CFLAGS="$SLKCFLAGS" \ +QMAKE_CXXFLAGS="$SLKCFLAGS" \ +make +make install INSTALL_ROOT=$PKG + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGELOG COPYING INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/psi-plus/psi-plus.info b/network/psi-plus/psi-plus.info new file mode 100644 index 0000000000..8e3d4386c1 --- /dev/null +++ b/network/psi-plus/psi-plus.info @@ -0,0 +1,10 @@ +PRGNAM="psi-plus" +VERSION="1.3.397" +HOMEPAGE="https://psi-plus.com" +DOWNLOAD="https://github.com/psi-plus/psi-plus-snapshots/archive/1.3.397/psi-plus-snapshots-1.3.397.tar.gz" +MD5SUM="8fab4a4f754bfdec6a7966b9cd311772" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="qca-qt5" +MAINTAINER="Dave Woodfall" +EMAIL="dave@dawoodfall.net" diff --git a/network/psi-plus/slack-desc b/network/psi-plus/slack-desc new file mode 100644 index 0000000000..51eca0e15f --- /dev/null +++ b/network/psi-plus/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +psi-plus: psi-plus (development branch of Psi IM XMPP/Jabber client) +psi-plus: +psi-plus: Psi+ is a development branch of Psi XMPP client by +psi-plus: psi-dev@conference.jabber.ru +psi-plus: +psi-plus: Note that this is intended for advanced users and developers. +psi-plus: +psi-plus: https://psi-plus.com +psi-plus: +psi-plus: +psi-plus: