diff options
author | Gilcio Amaral <gilcio.amaral@gmail.com> | 2010-07-02 18:04:09 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-03 02:31:43 -0500 |
commit | aa913f5a8a0d4d79dbdc2601da8215058c74b457 (patch) | |
tree | 38da8d054b5347a7f9b87ccef675c04d74691ec4 /office | |
parent | 81d37c182f771d68e9006f626dc6563b1acd0e5c (diff) | |
download | slackbuilds-aa913f5a8a0d4d79dbdc2601da8215058c74b457.tar.gz |
office/kmymoney: Added (personal finance app)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r-- | office/kmymoney/README | 3 | ||||
-rw-r--r-- | office/kmymoney/doinst.sh | 9 | ||||
-rw-r--r-- | office/kmymoney/kmymoney.SlackBuild | 104 | ||||
-rw-r--r-- | office/kmymoney/kmymoney.info | 10 | ||||
-rw-r--r-- | office/kmymoney/slack-desc | 19 |
5 files changed, 145 insertions, 0 deletions
diff --git a/office/kmymoney/README b/office/kmymoney/README new file mode 100644 index 0000000000..31b1cab09a --- /dev/null +++ b/office/kmymoney/README @@ -0,0 +1,3 @@ +KmyMoney is a simple financial accounting manager for KDE +for personal or small-business use. It is a complete and +full double-entry accounting software package. diff --git a/office/kmymoney/doinst.sh b/office/kmymoney/doinst.sh new file mode 100644 index 0000000000..76cc38a548 --- /dev/null +++ b/office/kmymoney/doinst.sh @@ -0,0 +1,9 @@ +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/kmymoney/kmymoney.SlackBuild b/office/kmymoney/kmymoney.SlackBuild new file mode 100644 index 0000000000..b313f79e4a --- /dev/null +++ b/office/kmymoney/kmymoney.SlackBuild @@ -0,0 +1,104 @@ +#!/bin/sh + +# SlackBuild script for kmymoney + +# Copyright 2007-2008 Michiel van Wessem, Manchester, United Kingdom +# Copyright 2010 Gilcio Amaral <gilcio.amaral@gmail.com. +# 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. + +PRGNAM=kmymoney +VERSION=${VERSION:-3.98.1} +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 +rm -rf $TMP/$PRGNAM-$VERSION +cd $TMP +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 {} \; + +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 VERBOSE=1 + make install VERBOSE=1 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 + +find $PKG/usr/man -type f -exec gzip -9 {} \; + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS BUGS COPYING ChangeLog* INSTALL README* TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir $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/kmymoney/kmymoney.info b/office/kmymoney/kmymoney.info new file mode 100644 index 0000000000..c56280a4bd --- /dev/null +++ b/office/kmymoney/kmymoney.info @@ -0,0 +1,10 @@ +PRGNAM="kmymoney" +VERSION="3.98.1" +HOMEPAGE="http://kmymoney2.sourceforge.net/index-home.html" +DOWNLOAD="http://downloads.sourceforge.net/kmymoney2/kmymoney-3.98.1.tar.bz2" +MD5SUM="1b9c22fca692947c532c541c2c8ded7c" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Gilcio Amaral" +EMAIL="gilcio.amaral@gmail.com" +APPROVED="rworkman" diff --git a/office/kmymoney/slack-desc b/office/kmymoney/slack-desc new file mode 100644 index 0000000000..c70fe633c2 --- /dev/null +++ b/office/kmymoney/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------------------------------------------------------| +kmymoney2: kmymoney (simple financial accounting manager) +kmymoney2: +kmymoney2: KmyMoney is a simple financial accounting manager for KDE for +kmymoney2: personal or small-business use. It is a complete and full +kmymoney2: double-entry accounting software package. +kmymoney2: +kmymoney2: Homepage: http://kmymoney2.sourceforge.net/ +kmymoney2: +kmymoney2: +kmymoney2: +kmymoney2: |