From 5afe893fe71c0e450fa3b010755b8d2f14464c40 Mon Sep 17 00:00:00 2001 From: dsomero Date: Mon, 5 Jul 2010 14:43:20 -0400 Subject: office/kmymoney: Removed now obsolete. Signed-off-by: dsomero --- office/kmymoney2/README | 21 ------ office/kmymoney2/doinst.sh | 9 --- office/kmymoney2/kmymoney2.SlackBuild | 122 ---------------------------------- office/kmymoney2/kmymoney2.info | 10 --- office/kmymoney2/slack-desc | 19 ------ 5 files changed, 181 deletions(-) delete mode 100644 office/kmymoney2/README delete mode 100644 office/kmymoney2/doinst.sh delete mode 100644 office/kmymoney2/kmymoney2.SlackBuild delete mode 100644 office/kmymoney2/kmymoney2.info delete mode 100644 office/kmymoney2/slack-desc (limited to 'office') diff --git a/office/kmymoney2/README b/office/kmymoney2/README deleted file mode 100644 index 165e41c54f..0000000000 --- a/office/kmymoney2/README +++ /dev/null @@ -1,21 +0,0 @@ -KmyMoney 2 is a simple financial accounting manager for KDE for personal or -small-business use. It is a full double-entry accounting software package. - -The ultimate objectives of KMyMoney are... -* Familiar Features. KMyMoney intends to provide all important features -found in the commercially-available, personal finance managers. The -current release is closer than ever to that goal and more improvements -are already planned or being tested. -* Ease of use. KMyMoney strives to be the easiest open source personal -finance manager to use, especially for the non-technical user. -* Accuracy. Using time tested double entry accounting principles KMyMoney -can help ensure that your finances are kept in correct order. - -IF you want to enable support for ofxbanking, you need to have libofx -installed (a build script for this is available at SlackBuilds.org), and -start the script with this: OFX=YES ./kmymoney2.SlackBuild -KMyMoney2 is personal financial tool, easy to use. - -KMyMoney2 is still a KDE3 application, so to compile/use it on Slackware 13.0, -the KDE3 compatibility libraries from kde-compat are required. - diff --git a/office/kmymoney2/doinst.sh b/office/kmymoney2/doinst.sh deleted file mode 100644 index 76cc38a548..0000000000 --- a/office/kmymoney2/doinst.sh +++ /dev/null @@ -1,9 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1 -fi - -if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/office/kmymoney2/kmymoney2.SlackBuild b/office/kmymoney2/kmymoney2.SlackBuild deleted file mode 100644 index 7e07ec4631..0000000000 --- a/office/kmymoney2/kmymoney2.SlackBuild +++ /dev/null @@ -1,122 +0,0 @@ -#!/bin/sh - -# Slackware build script for: kmymoney2 - -# Written by Luiz Eduardo. -# Copyright 2007-2008 Michiel van Wessem, Manchester, United Kingdom -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "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 COPYRIGHT -# OWNER OR CONTRIBUTORS 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. - -# Very heavily modified by the SlackBuilds.org project. --Michiel - -PRGNAM=kmymoney2 -VERSION=${VERSION:-1.0.0} -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} - -# (note this needs libofx from SlackBuilds.org. By default -# this will be disabled. -OFX=${OFX:-NO} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e # Exit on most of the errors. - -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 {} \; - -# If OFX=yes, build with ofxsupport -if [ "$OFX" = "YES" ]; then - useofx="en" -else - useofx="dis" -fi - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --with-qt-dir=/opt/kde3/lib${LIBDIRSUFFIX}/qt3 \ - --with-qt-includes=/opt/kde3/lib${LIBDIRSUFFIX}/qt/include \ - --with-qt-libraries=/opt/kde3/lib${LIBDIRSUFFIX}/qt3/lib \ - --${useofx}able-ofxplugin \ - --${useofx}able-ofxbanking \ - --disable-leak-check \ - --disable-pdf-docs \ - --disable-debug \ - --build=$ARCH-slackware-linux - -make -make install-strip DESTDIR=$PKG - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog* INSTALL README* TODO $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/office/kmymoney2/kmymoney2.info b/office/kmymoney2/kmymoney2.info deleted file mode 100644 index b6e8a9159d..0000000000 --- a/office/kmymoney2/kmymoney2.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="kmymoney2" -VERSION="1.0.0" -HOMEPAGE="http://kmymoney2.sourceforge.net/index-home.html" -DOWNLOAD="http://downloads.sourceforge.net/kmymoney2/kmymoney2-1.0.0.tar.bz2" -MD5SUM="f702ea77ff5bf6aec727768da34d98ec" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Ledu" -EMAIL="ledubr@gmail.com" -APPROVED="michiel" diff --git a/office/kmymoney2/slack-desc b/office/kmymoney2/slack-desc deleted file mode 100644 index 1589711ceb..0000000000 --- a/office/kmymoney2/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------------------------------------------------------| -kmymoney2: kmymoney2 (simple financial accounting manager) -kmymoney2: -kmymoney2: KmyMoney 2 is a simple financial accounting manager for KDE for -kmymoney2: personal or small-business use. It is a complete and fullfull -kmymoney2: double-entry accouunting software package. -kmymoney2: -kmymoney2: note that kmymoney2 will require the KDE3-compatiblity packages -kmymoney2: to be install for this to work. -kmymoney2: -kmymoney2: Homepage: http://kmymoney2.sourceforge.net/ -kmymoney2: -- cgit v1.2.3