summaryrefslogtreecommitdiff
path: root/community/kmymoney
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/kmymoney
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/kmymoney')
-rw-r--r--community/kmymoney/PKGBUILD49
-rw-r--r--community/kmymoney/git-fixes.diff43
-rw-r--r--community/kmymoney/kmymoney.changelog32
-rw-r--r--community/kmymoney/kmymoney.install13
4 files changed, 0 insertions, 137 deletions
diff --git a/community/kmymoney/PKGBUILD b/community/kmymoney/PKGBUILD
deleted file mode 100644
index 09b2154fa..000000000
--- a/community/kmymoney/PKGBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id: PKGBUILD 94028 2013-07-13 12:33:04Z svenstaro $
-# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
-# Maintainer: Laurent Carlier <lordheavym@gmail.com>
-# Contributor: Vamp898 <vamp898@web.de>
-# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
-# Contributor: Eric Belanger <eric@archlinux.org>
-# Contributor: Todd Maynard <arch@toddmaynard.com>
-
-pkgname=kmymoney
-pkgver=4.6.3
-pkgrel=3
-pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money or Quicken"
-arch=('i686' 'x86_64')
-url="http://kmymoney2.sourceforge.net/"
-license=('GPL')
-depends=('kdebase-workspace' 'shared-mime-info' 'aqbanking' 'libofx' 'libalkimia' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'docbook-xml' 'docbook-xsl' 'boost')
-replaces=('kmymoney2')
-install=$pkgname.install
-changelog=$pkgname.changelog
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/kmymoney2/KMyMoney-KDE4/$pkgver/$pkgname-$pkgver.tar.bz2
- git-fixes.diff)
-sha256sums=('94e109992b7e9ebb066b608d56c168216b8a944d62538c95176bc36ea4db542e'
- 'e618cc5531f00c14171c5cae837d8b5fb58bccaac363a5b09eed863355c242d3')
-
-prepare() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- patch -Np1 -i ../git-fixes.diff
-}
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- mkdir build
- cd build
-
- cmake ../ \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_SKIP_RPATH=YES
- make VERBOSE=1
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}/build"
-
- make DESTDIR="${pkgdir}" install
-}
diff --git a/community/kmymoney/git-fixes.diff b/community/kmymoney/git-fixes.diff
deleted file mode 100644
index 21b0e2330..000000000
--- a/community/kmymoney/git-fixes.diff
+++ /dev/null
@@ -1,43 +0,0 @@
-commit 77209f84a85360e98d2e805d412956a8f2a77db3
-Author: Alex Merry <kde@randomguy3.me.uk>
-Date: Fri Feb 1 15:31:54 2013 +0000
-
- Fix build with GMP 5.1.0
-
- GMP 5.1.0 no longer has implicit conversions to mpz_class from mpq_class
- or mpf_class. So we have to have an explicit conversion.
-
- BUG: 312481
-
-diff --git a/kmymoney/mymoney/mymoneymoney.cpp b/kmymoney/mymoney/mymoneymoney.cpp
-index aeed135..5de7fa9 100644
---- a/kmymoney/mymoney/mymoneymoney.cpp
-+++ b/kmymoney/mymoney/mymoneymoney.cpp
-@@ -158,7 +158,7 @@ QString MyMoneyMoney::formatMoney(const QString& currency, const int prec, bool
- // be much better than using KGlobal::locale()->formatMoney.
- bool bNegative = false;
- mpz_class left = value / static_cast<MyMoneyMoney>(convertDenominator(d)).valueRef().get_den();
-- mpz_class right = (valueRef() - mpq_class(left)) * denom;
-+ mpz_class right = mpz_class((valueRef() - mpq_class(left)) * denom);
-
- if (right < 0) {
- right = -right;
-commit 9b6f96a38b8c84cb87bb07165b503acbe5ea81ff
-Author: Christoph Feck <christoph@maxiom.de>
-Date: Fri Mar 23 23:05:19 2012 +0100
-
- Fix includes
-
-diff --git a/kmymoney/mymoney/storage/mymoneydatabasemgrtest.cpp b/kmymoney/mymoney/storage/mymoneydatabasemgrtest.cpp
-index ff217e3..d31bb02 100644
---- a/kmymoney/mymoney/storage/mymoneydatabasemgrtest.cpp
-+++ b/kmymoney/mymoney/storage/mymoneydatabasemgrtest.cpp
-@@ -16,6 +16,7 @@
-
- #include "mymoneydatabasemgrtest.h"
- #include <pwd.h>
-+#include <unistd.h>
- #include <iostream>
-
- #include <QtTest/QtTest>
-
diff --git a/community/kmymoney/kmymoney.changelog b/community/kmymoney/kmymoney.changelog
deleted file mode 100644
index 30290a6f8..000000000
--- a/community/kmymoney/kmymoney.changelog
+++ /dev/null
@@ -1,32 +0,0 @@
-2012-09-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * kmymoney 4.6.3-1
-
-2012-08-09 Eric Belanger <eric@archlinux.org>
- * kmymoney 4.6.2-2
- * Rebuild against libofx 0.9.5
-
-2011-02-19 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * kmymoney 4.5.3
-
-2010-12-27 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * kmymoney 4.5.2
-
-2010-10-20 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * kmymoney 4.5.1
- * Added aqbanking dependency
-
-2010-08-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * Update to major release 4.5
- * Package renamed to 'kmymoney'
-
-2010-05-20 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * Update to major release 1.0.5
-
-2010-04-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * Update to major release 1.0.4
-
-2010-04-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * FS#18974 broken OFX imported fixed in 1.0.3-2
-
-2010-03-27 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * Update to major release 1.0.3
diff --git a/community/kmymoney/kmymoney.install b/community/kmymoney/kmymoney.install
deleted file mode 100644
index f7f5bd0bf..000000000
--- a/community/kmymoney/kmymoney.install
+++ /dev/null
@@ -1,13 +0,0 @@
-post_install() {
- update-mime-database usr/share/mime &> /dev/null
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
- update-desktop-database -q
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}