summaryrefslogtreecommitdiffstats
path: root/business
diff options
context:
space:
mode:
author Robby Workman2013-11-20 20:33:44 +0100
committer Robby Workman2013-11-24 06:19:27 +0100
commit2c2d8a1c5847635c19856070daa952423fb6e309 (patch)
tree9e4b813c3f0f81770f919c3686f736ee3f41816d /business
parentf8aa2f11bb7ee702da93d15ec2a52332c952514b (diff)
downloadslackbuilds-2c2d8a1c5847635c19856070daa952423fb6e309.tar.gz
business/gnucash: Removed (build failure and etcetera)
This needs an older version of goffice than we have in our repo, but at least a couple of other things in the repo require the newer goffice. Since we have to make a choice, and since gnucash also insists on having all of the deprecated gnome2 libraries, and because it's a general pain anyway, the choice is an easy one to make for us. Isn't block text just wonderful looking here? Signed-off-by: RobbyWorkman <rworkman@slackbuilds.org>
Diffstat (limited to 'business')
-rw-r--r--business/gnucash/README8
-rw-r--r--business/gnucash/doinst.sh9
-rw-r--r--business/gnucash/glib-single-include.patch22
-rw-r--r--business/gnucash/gnucash.SlackBuild164
-rw-r--r--business/gnucash/gnucash.info10
-rw-r--r--business/gnucash/slack-desc19
6 files changed, 0 insertions, 232 deletions
diff --git a/business/gnucash/README b/business/gnucash/README
deleted file mode 100644
index 25ac6d2035..0000000000
--- a/business/gnucash/README
+++ /dev/null
@@ -1,8 +0,0 @@
-GNUCash is opensource accounting software.
-
-If you want the new webkit report rendering integration, you must
-first have webkitgtk installed, and then pass the WEBKIT=true flag.
-
-If you want the new SQL database integration, you must first have libdbi
-and libdbi-drivers installed, and then pass the DBI=true flag.
-
diff --git a/business/gnucash/doinst.sh b/business/gnucash/doinst.sh
deleted file mode 100644
index 3e5691a052..0000000000
--- a/business/gnucash/doinst.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q 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/business/gnucash/glib-single-include.patch b/business/gnucash/glib-single-include.patch
deleted file mode 100644
index 51c1e81e3b..0000000000
--- a/business/gnucash/glib-single-include.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -Naur gnucash-2.4.11.orig/src/core-utils/gnc-filepath-utils.c gnucash-2.4.11/src/core-utils/gnc-filepath-utils.c
---- gnucash-2.4.11.orig/src/core-utils/gnc-filepath-utils.c 2012-01-10 00:58:04.000000000 +0100
-+++ gnucash-2.4.11/src/core-utils/gnc-filepath-utils.c 2012-10-06 18:05:10.853171945 +0200
-@@ -47,7 +47,6 @@
- #include "gnc-filepath-utils.h"
-
- #ifdef _MSC_VER
--#include <glib/gwin32.h>
- #define PATH_MAX MAXPATHLEN
- #endif
-
-diff -Naur gnucash-2.4.11.orig/src/libqof/qof/gnc-date.c gnucash-2.4.11/src/libqof/qof/gnc-date.c
---- gnucash-2.4.11.orig/src/libqof/qof/gnc-date.c 2012-01-10 00:58:15.000000000 +0100
-+++ gnucash-2.4.11/src/libqof/qof/gnc-date.c 2012-10-06 18:06:22.286171945 +0200
-@@ -40,7 +40,6 @@
- #include <string.h>
- #include <time.h>
-
--#include <glib.h>
- #include <glib/gi18n.h>
-
- #include "gnc-date-p.h"
diff --git a/business/gnucash/gnucash.SlackBuild b/business/gnucash/gnucash.SlackBuild
deleted file mode 100644
index 48e9d52dbc..0000000000
--- a/business/gnucash/gnucash.SlackBuild
+++ /dev/null
@@ -1,164 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for gnucash
-
-# Copyright 2008,2009,2010,2011 Vincent Batts, vbatts@hashbangbash.com, http://hashbangbash.com/
-# 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=gnucash
-VERSION=2.4.11
-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}
-
-DBI=${DBI:-false}
-WEBKIT=${WEBKIT:-false}
-OPT_ARGS=""
-
-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"
-elif [ "$ARCH" = "s390" ]; then
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "arm" ]; then
- SLKCFLAGS="-O2 -march=armv4t"
- LIBDIRSUFFIX=""
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-if [ ! "$DBI" = "false" ] ; then
- OPT_ARGS="--enable-dbi --with-dbi-dbd-dir=/usr/lib${LIBDIRSUFFIX}/dbd/"
- echo $0 : building with dbi enabled
- sleep 0.5
-else
- OPT_ARGS="--disable-dbi"
-fi
-if [ ! "$WEBKIT" = "false" ] ; then
- OPT_ARGS="$OPT_ARGS --enable-webkit --with-html-engine=webkit"
- echo $0 : building with webkit enabled
- sleep 0.5
-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 -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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-# Starting with glib 2.32 it is now mandatory to
-# include glib.h instead of individual headers.
-patch -p1 -i $CWD/glib-single-include.patch
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --infodir=/usr/info \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --enable-python-bindings \
- --enable-ofx \
- --disable-aqbanking \
- $OPT_ARGS \
- --build=$ARCH-slackware-linux
-
-# Cut away jobs number from the MAKEFLAGS
-MAKEFLAGS=$(echo "$MAKEFLAGS" | sed "s/-j[0-999]//g")
-make -j1
-make install DESTDIR=$PKG
-
-# Create the gconf defaults directory
-mkdir -p $PKG/etc/gconf/gconf.xml.defaults
-
-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 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- ChangeLog* README* TODO AUTHORS COPYING \
- DOCUMENTERS HACKING INSTALL LICENSE NEWS \
- $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
-
-# handle the schemas and such (hopefully) properly
-export GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults"
-for rawname in $(find $PKG/etc/gconf/schemas -name "*.schemas") ; do
- schema=$(basename $rawname)
- cat << eof >> $PKG/install/doinst.sh
-GCONF_CONFIG_SOURCE="${GCONF_CONFIG_SOURCE}" \
-chroot . gconftool-2 \
- --config-source=$GCONF_CONFIG_SOURCE \
- --makefile-install-rule /etc/gconf/schemas/$schema 1>/dev/null
-eof
-done
-for rawname in $(find $PKG/etc/gconf/schemas -name "*.entries") ; do
- entry=$(basename $rawname)
- cat << eof >> $PKG/install/doinst.sh
-GCONF_CONFIG_SOURCE="${GCONF_CONFIG_SOURCE}" \
-chroot . gconftool-2 --direct \
- --config-source=$GCONF_CONFIG_SOURCE \
- --load /etc/gconf/schemas/$entry 1>/dev/null
-eof
-done
-unset GCONF_CONFIG_SOURCE
-
-cd $PKG
-/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
-
diff --git a/business/gnucash/gnucash.info b/business/gnucash/gnucash.info
deleted file mode 100644
index 5f262e2351..0000000000
--- a/business/gnucash/gnucash.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="gnucash"
-VERSION="2.4.11"
-HOMEPAGE="http://www.gnucash.org/"
-DOWNLOAD="http://downloads.sourceforge.net/sourceforge/gnucash/gnucash-2.4.11.tar.bz2"
-MD5SUM="e59f94a8c4cf41f47a9e74ba725bde45"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="slib libofx gtkhtml goffice"
-MAINTAINER="Vincent Batts"
-EMAIL="vbatts@hashbangbash.com"
diff --git a/business/gnucash/slack-desc b/business/gnucash/slack-desc
deleted file mode 100644
index ec6f9feac6..0000000000
--- a/business/gnucash/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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-gnucash: gnucash (financial accounting application)
-gnucash:
-gnucash: GnuCash is personal and small-business financial-accounting software.
-gnucash:
-gnucash: Designed to be easy to use, yet powerful and flexible, GnuCash allows
-gnucash: you to track bank accounts, stocks, income and expenses. As quick and
-gnucash: intuitive to use as a checkbook register, it is based on professional
-gnucash: accounting principles to ensure balanced books and accurate reports.
-gnucash:
-gnucash: Homepage: http://gnucash.org/
-gnucash: