diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 16:00:15 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 16:00:15 -0500 |
commit | c79f9d79798f01e7ddcb1f3fd3693f32d1917993 (patch) | |
tree | 78afd696ffc546225c67295c3ef01d9d49674c0b | |
parent | b226930b80e7b94af0ef1edf83438775a2507f2e (diff) | |
download | slackbuilds-c79f9d79798f01e7ddcb1f3fd3693f32d1917993.tar.gz |
libraries/libsyncml: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-February/005274.html
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | libraries/libsyncml/README | 3 | ||||
-rw-r--r-- | libraries/libsyncml/libsyncml.SlackBuild | 104 | ||||
-rw-r--r-- | libraries/libsyncml/libsyncml.info | 10 | ||||
-rw-r--r-- | libraries/libsyncml/slack-desc | 19 | ||||
-rw-r--r-- | office/osmo/README | 2 |
5 files changed, 1 insertions, 137 deletions
diff --git a/libraries/libsyncml/README b/libraries/libsyncml/README deleted file mode 100644 index 89df0dfdd9..0000000000 --- a/libraries/libsyncml/README +++ /dev/null @@ -1,3 +0,0 @@ -libsyncml is a implementation of the SyncML protocol. - -Optional dependencies are libsoup and liwbxml. diff --git a/libraries/libsyncml/libsyncml.SlackBuild b/libraries/libsyncml/libsyncml.SlackBuild deleted file mode 100644 index b84fa23d41..0000000000 --- a/libraries/libsyncml/libsyncml.SlackBuild +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/sh - -# Slackware build script for libsyncml - -# (C) 2008 Michael Wagner <slackware.wagnerm@arcor.de> -# 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=libsyncml -VERSION=0.4.6 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) 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.bz2 -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 {} \; - -# Patch libsyncml/CMakeLists.txt -sed -i 's,LIBXML2_INCLUDE_DIR,LIBXML2_INCLUDE_DIRS,' libsyncml/CMakeLists.txt - -mkdir build - -cd build - cmake \ - -DCMAKE_C_FLAGS="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_SUFFIX=$LIBDIRSUFFIX \ - -Wno-dev \ - .. - - 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 ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/* - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/libsyncml/libsyncml.info b/libraries/libsyncml/libsyncml.info deleted file mode 100644 index 65a1d46411..0000000000 --- a/libraries/libsyncml/libsyncml.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="libsyncml" -VERSION="0.4.6" -HOMEPAGE="http://libsyncml.opensync.org/" -DOWNLOAD="http://libsyncml.opensync.org/download/releases/0.4.6/libsyncml-0.4.6.tar.bz2" -MD5SUM="d524b18c1eafe5805f83e29c01a91b66" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Michael Wagner" -EMAIL="slackware.wagnerm@arcor.de" -APPROVED="dsomero,pprkut" diff --git a/libraries/libsyncml/slack-desc b/libraries/libsyncml/slack-desc deleted file mode 100644 index 521bc67458..0000000000 --- a/libraries/libsyncml/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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---------------------------------------------------| -libsyncml: libsyncml (Implementation of the SyncML protocol) -libsyncml: -libsyncml: Implementation of the SyncML protocol. -libsyncml: -libsyncml: Homepage http://libsyncml.opensync.org -libsyncml: -libsyncml: -libsyncml: -libsyncml: -libsyncml: -libsyncml: diff --git a/office/osmo/README b/office/osmo/README index 4e7cb6b3f2..466e5dca58 100644 --- a/office/osmo/README +++ b/office/osmo/README @@ -2,4 +2,4 @@ Osmo is a handy personal organizer which includes calendar, task manager and address book modules. It was designed to be a small, easy to use and good looking PIM tool to help to manage personal information. -Optional build-time dependencies are libsyncml, libgringotts, and libtar. +Optional build-time dependencies are libgringotts and libtar. |