Remove kde4.kmymoney
- No maintainer in Nixpkgs
This commit is contained in:
parent
1336b8dcc9
commit
412b2b1859
4 changed files with 0 additions and 79 deletions
|
@ -1,34 +0,0 @@
|
|||
{ stdenv, fetchurl, cmake, kdelibs, automoc4, kdepimlibs, gettext, pkgconfig
|
||||
, shared_mime_info, perl, boost, gpgme, gmpxx, libalkimia, libofx, libical
|
||||
, doxygen, aqbanking, gwenhywfar }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kmymoney-${version}";
|
||||
version = "4.8.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/kmymoney/${version}/src/${name}.tar.xz";
|
||||
sha256 = "1hlayhcmdfayma4hchv2bfyg82ry0h74hg4095d959mg19qkb9n2";
|
||||
};
|
||||
|
||||
cmakeFlags = [
|
||||
"-DENABLE_KBANKING='true'"
|
||||
];
|
||||
|
||||
buildInputs = [ kdepimlibs perl boost gpgme gmpxx libalkimia libofx libical
|
||||
doxygen aqbanking gwenhywfar ];
|
||||
nativeBuildInputs = [ cmake automoc4 gettext shared_mime_info pkgconfig ];
|
||||
|
||||
KDEDIRS = libalkimia;
|
||||
|
||||
patches = [
|
||||
./qgpgme.patch
|
||||
./seqaccessmgrtest.patch
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://kmymoney2.sourceforge.net/;
|
||||
description = "KDE personal money manager";
|
||||
inherit (kdelibs.meta) platforms maintainers;
|
||||
};
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
KMymoney tries to find qgpgme before kdepimlibs. This is wrong because
|
||||
FindQGpgme is installed by kdepimlibs, thus can be invisible until kdepimlibs
|
||||
found.
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index f6d7305..88bac67 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -59,8 +59,8 @@ else (WIN32)
|
||||
find_package(Boost "1.33.1" COMPONENTS graph)
|
||||
endif (WIN32)
|
||||
# needed by libkgpgfile
|
||||
-find_package(QGpgme REQUIRED)
|
||||
find_package(KdepimLibs REQUIRED)
|
||||
+find_package(QGpgme REQUIRED)
|
||||
find_package(SharedMimeInfo REQUIRED)
|
||||
|
||||
add_definitions( ${QT_DEFINITIONS} ${KDE4_DEFINITIONS} ${KDEPIM_DEFINITIONS})
|
|
@ -1,26 +0,0 @@
|
|||
Fix tests for 32bit builds until we can bring these upstream
|
||||
diff --git a/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp b/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
|
||||
index dcb4b4a..e803203 100644
|
||||
--- a/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
|
||||
+++ b/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
|
||||
@@ -58,13 +58,13 @@ void MyMoneySeqAccessMgrTest::testEmptyConstructor()
|
||||
QCOMPARE(m->m_nextPayeeID, 0ul);
|
||||
QCOMPARE(m->m_nextScheduleID, 0ul);
|
||||
QCOMPARE(m->m_nextReportID, 0ul);
|
||||
- QCOMPARE(m->m_institutionList.count(), 0ul);
|
||||
- QCOMPARE(m->m_accountList.count(), 5ul);
|
||||
- QCOMPARE(m->m_transactionList.count(), 0ul);
|
||||
- QCOMPARE(m->m_transactionKeys.count(), 0ul);
|
||||
- QCOMPARE(m->m_payeeList.count(), 0ul);
|
||||
- QCOMPARE(m->m_tagList.count(), 0ul);
|
||||
- QCOMPARE(m->m_scheduleList.count(), 0ul);
|
||||
+ QCOMPARE(m->m_institutionList.count(), (size_t)0);
|
||||
+ QCOMPARE(m->m_accountList.count(), (size_t)5);
|
||||
+ QCOMPARE(m->m_transactionList.count(), (size_t)0);
|
||||
+ QCOMPARE(m->m_transactionKeys.count(), (size_t)0);
|
||||
+ QCOMPARE(m->m_payeeList.count(), (size_t)0);
|
||||
+ QCOMPARE(m->m_tagList.count(), (size_t)0);
|
||||
+ QCOMPARE(m->m_scheduleList.count(), (size_t)0);
|
||||
|
||||
QCOMPARE(m->m_dirty, false);
|
||||
QCOMPARE(m->m_creationDate, QDate::currentDate());
|
|
@ -16713,8 +16713,6 @@ with pkgs;
|
|||
|
||||
kmplayer = callPackage ../applications/video/kmplayer { };
|
||||
|
||||
kmymoney = callPackage ../applications/office/kmymoney { };
|
||||
|
||||
kipi_plugins = callPackage ../applications/graphics/kipi-plugins { };
|
||||
|
||||
ktikz = callPackage ../applications/graphics/ktikz { };
|
||||
|
|
Loading…
Reference in a new issue