Debian squeeze amd_65, using gde3/gnome.
I'd like to use
KMyMoney, but the latest packages (v4.5.2) and not the v3.9.8/test version that's in Synaptic Package Manager.
I'd rather not install every package that contains *kde* in the name, but I'm more than willing to install the minimum required to compile and run them.
Trying to build kmymoney v4.5.2. After some google searches on the specific errors, I initially learned about apt-file and the find feature.
First error;
CMake Error at /usr/share/cmake-2.8/Modules/FindKDE4.cmake:98 (MESSAGE):
ERROR: cmake/modules/FindKDE4Internal.cmake not found in
/home/myusername/.kde/share/apps;/usr/share/kde4/apps
# apt-file find FindKDE4Internal.cmake
kdelibs5-dev: /usr/share/kde4/apps/cmake/modules/FindKDE4Internal.cmake
# aptitude install kdelibs5-dev
------
Second error;
-- Could NOT find Boost
CMake Error at CMakeLists.txt:53 (find_package):
Could not find module FindQGpgme.cmake or a configuration file for package
QGpgme.
Adjust CMAKE_MODULE_PATH to find FindQGpgme.cmake or set QGpgme_DIR to the
directory containing a CMake configuration file for QGpgme. The file will
have one of the following names:
QGpgmeConfig.cmake
qgpgme-config.cmake
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:70 (MESSAGE):
Could NOT find KdepimLibs (missing: KdepimLibs_CONFIG)
Call Stack (most recent call first):
/usr/share/kde4/apps/cmake/modules/FindKdepimLibs.cmake:80 (find_package_handle_standard_args)
...
# updatedb
# locate QGpgmeConfig.cmake
# locate qgpgme-config.cmake
# apt-file find QGpgmeConfig.cmake
# apt-file find qgpgme-config.cmake
# apt-file find QGpgme
kdepimlibs5-dev: /usr/share/kde4/apps/cmake/modules/FindQGpgme.cmake
# aptitude install kdepimlibs5-dev
--------
Third error;
-- Could NOT find Boost
-- No usable gpgme flavours found.
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:70 (MESSAGE):
Could NOT find QGpgme (missing: QGPGME_LIBRARY QGPGME_INCLUDE_DIR
_QGPGME_EXTRA_LIBRARY)
Call Stack (most recent call first):
/usr/share/kde4/apps/cmake/modules/FindQGpgme.cmake:44 (find_package_handle_standard_args)
CMakeLists.txt:53 (find_package)
I'm unable to determine what package I need for 'Boost', and although apt-file reports that kdepimlibs5-dev is the package for gpgme - I still have no files called QGpgmeConfig.cmake or qgpgme-config.cmake, and the log still shows 'Could NOT find QGpgme'.
Any pointers on what package(s) I'm missing, or other ways to determine what I need? Thanks in advance.