From b760f054f3006aa6393ab8e7497c0c0767f56f5a Mon Sep 17 00:00:00 2001 From: Andy Bailey Date: Mon, 18 Oct 2010 22:10:18 -0500 Subject: network/kobby: Added (collaborative editor) Signed-off-by: Robby Workman --- network/kobby/README | 6 ++++ network/kobby/doinst.sh | 4 +++ network/kobby/kobby.SlackBuild | 79 ++++++++++++++++++++++++++++++++++++++++++ network/kobby/kobby.info | 10 ++++++ network/kobby/slack-desc | 19 ++++++++++ 5 files changed, 118 insertions(+) create mode 100644 network/kobby/README create mode 100644 network/kobby/doinst.sh create mode 100644 network/kobby/kobby.SlackBuild create mode 100644 network/kobby/kobby.info create mode 100644 network/kobby/slack-desc diff --git a/network/kobby/README b/network/kobby/README new file mode 100644 index 0000000000..174382c446 --- /dev/null +++ b/network/kobby/README @@ -0,0 +1,6 @@ +kobby is a collaborative editor for KDE similar to gobby. + +Note: the "inifinoted" daemon, required for collaborative sessions, is +included with the libinfinity Slackbuild. + +This requires libqinfinity, libinfinity, and libgsasl. diff --git a/network/kobby/doinst.sh b/network/kobby/doinst.sh new file mode 100644 index 0000000000..4e8ba7071d --- /dev/null +++ b/network/kobby/doinst.sh @@ -0,0 +1,4 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + diff --git a/network/kobby/kobby.SlackBuild b/network/kobby/kobby.SlackBuild new file mode 100644 index 0000000000..20840aae11 --- /dev/null +++ b/network/kobby/kobby.SlackBuild @@ -0,0 +1,79 @@ +#!/bin/sh + +# Slackware build script for kobby, bailey@akamai.com + +PRGNAM=kobby +VERSION=${VERSION:-1.0b5} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_SUFFIX=${LIBDIRSUFFIX} \ + -DMAN_INSTALL_DIR=/usr/man \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +cd .. + +find $PKG | xargs 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 \ + AUTHORS 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/kobby/kobby.info b/network/kobby/kobby.info new file mode 100644 index 0000000000..5e8d35b2dc --- /dev/null +++ b/network/kobby/kobby.info @@ -0,0 +1,10 @@ +PRGNAM="kobby" +VERSION="1.0b5" +HOMEPAGE="http://kobby.greghaynes.net/home" +DOWNLOAD="http://kobby.greghaynes.net/file-cabinet/kobby-1.0b5.tar.gz" +MD5SUM="4261ecedfa885f62614e28cbc197f235" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Andy Bailey" +EMAIL="bailey@akamai.com" +APPROVED="rworkman" diff --git a/network/kobby/slack-desc b/network/kobby/slack-desc new file mode 100644 index 0000000000..285b2f32b0 --- /dev/null +++ b/network/kobby/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 ':'. + + |-----handy-ruler------------------------------------------------------| +kobby: kobby (collaborative editor) +kobby: +kobby: kobby is a collaborative editor for KDE similar to gobby. +kobby: +kobby: Homepage: http://kobby.greghaynes.net/home +kobby: +kobby: +kobby: +kobby: +kobby: +kobby: -- cgit v1.2.3-80-g2a13