diff --git a/desktop/kde/graphics/digikam/actions.py b/desktop/kde/graphics/digikam/actions.py
new file mode 100644
index 0000000000..f8c0d75363
--- /dev/null
+++ b/desktop/kde/graphics/digikam/actions.py
@@ -0,0 +1,34 @@
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import kde5
+from pisi.actionsapi import get
+from pisi.actionsapi import cmaketools
+
+#shelltools.export("HOME", get.workDIR())
+
+def setup():
+ kde5.configure("-DFORCED_UNBUNDLE=ON \
+ -DWITH_LQR=ON \
+ -DWITH_LENSFUN=OFF \
+ -DWITH_MarbleWidget=ON \
+ -DENABLE_LCMS2=ON \
+ -DDIGIKAMSC_COMPILE_KIPIPLUGINS=ON \
+ -DDIGIKAMSC_USE_PRIVATE_SHAREDLIBS=ON \
+ -DDIGIKAMSC_COMPILE_LIBKGEOMAP=ON \
+ -DDIGIKAMSC_COMPILE_LIBKVKONTAKTE=ON \
+ -DDIGIKAMSC_COMPILE_LIBMEDIAWIKI=ON \
+ -DDIGIKAMSC_COMPILE_LIBKFACE=ON \
+ -DDIGIKAMSC_COMPILE_LIBKIPI=ON ")
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
+
+ pisitools.dodoc("COPYING", "COPYING-CMAKE-SCRIPTS", "README.LOCAL", "README", "README.MACOS", "NEWS")
+
diff --git a/desktop/kde/graphics/digikam/files/digikam-3.5.0-panorama-crasher.patch b/desktop/kde/graphics/digikam/files/digikam-3.5.0-panorama-crasher.patch
new file mode 100644
index 0000000000..1d6901bc85
--- /dev/null
+++ b/desktop/kde/graphics/digikam/files/digikam-3.5.0-panorama-crasher.patch
@@ -0,0 +1,28 @@
+diff -up digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp.panorama-crasher digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp
+--- digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp.panorama-crasher 2013-10-01 08:23:09.000000000 +0200
++++ digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp 2013-12-12 11:50:14.199493306 +0100
+@@ -91,11 +91,7 @@ LastPage::LastPage(Manager* const mngr,
+
+ QLabel *fileTemplateLabel = new QLabel(i18n("File name template:"), d->saveSettingsGroupBox);
+ formatVBox->addWidget(fileTemplateLabel);
+- QString first = d->mngr->itemsList().front().fileName();
+- QString last = d->mngr->itemsList().back().fileName();
+-// QString file = "panorama";
+- QString file = QString("%1-%2").arg(first.left(first.lastIndexOf('.'))).arg(last.left(last.lastIndexOf('.')));
+- d->fileTemplateKLineEdit = new KLineEdit(file, d->saveSettingsGroupBox);
++ d->fileTemplateKLineEdit = new KLineEdit("panorama", d->saveSettingsGroupBox);
+ d->fileTemplateKLineEdit->setToolTip(i18n("Name of the panorama file (without its extension)."));
+ d->fileTemplateKLineEdit->setWhatsThis(i18n("File name template: Set here the base name of the files that "
+ "will be saved. For example, if your template is panorama and if "
+@@ -146,6 +142,11 @@ LastPage::~LastPage()
+
+ void LastPage::resetTitle()
+ {
++ QString first = d->mngr->itemsList().front().fileName();
++ QString last = d->mngr->itemsList().back().fileName();
++ QString file = QString("%1-%2").arg(first.left(first.lastIndexOf('.'))).arg(last.left(last.lastIndexOf('.')));
++ d->fileTemplateKLineEdit->setText(file);
++
+ slotTemplateChanged(d->fileTemplateKLineEdit->text());
+ checkFiles();
+ }
diff --git a/desktop/kde/graphics/digikam/files/digikam-4.4.0-hang.patch b/desktop/kde/graphics/digikam/files/digikam-4.4.0-hang.patch
new file mode 100644
index 0000000000..07a676f6cb
--- /dev/null
+++ b/desktop/kde/graphics/digikam/files/digikam-4.4.0-hang.patch
@@ -0,0 +1,85 @@
+commit f0400ec7e518e753e0c4ccab4eb2b8b022f91767
+Author: Gilles Caulier
+Date: Tue Oct 28 15:58:55 2014 +0100
+
+ apply patch #89156
+ BUGS: 337737
+ FIXED-IN: 4.5.0
+
+diff --git core/libs/widgets/common/databasewidget.cpp b/libs/widgets/common/databasewidget.cpp
+index b04355b..858cf40 100644
+--- core/libs/widgets/common/databasewidget.cpp
++++ core/libs/widgets/common/databasewidget.cpp
+@@ -172,30 +172,21 @@ void DatabaseWidget::setupMainArea()
+ "
MySQL backend is a more robust solution especially for remote and shared database storage. "
+ "It is also more efficient to manage huge collection sizes. "
+ "Be careful: this one it is still in experimental stage.
"));
+- setDatabaseInputFields(DatabaseParameters::SQLiteDatabaseType());
+-
+- // --------------------------------------------------------
+
+- adjustSize();
++ setDatabaseInputFields(DatabaseParameters::SQLiteDatabaseType());
+
+ // --------------------------------------------------------
+
+- connect(databasePathEdit, SIGNAL(urlSelected(KUrl)),
+- this, SLOT(slotChangeDatabasePath(KUrl)));
+-
+- connect(databasePathEdit, SIGNAL(textChanged(QString)),
+- this, SLOT(slotDatabasePathEditedDelayed()));
+-
+ connect(databaseType, SIGNAL(currentIndexChanged(int)),
+ this, SLOT(slotHandleDBTypeIndexChanged(int)));
+
++ connect(checkDatabaseConnectionButton, SIGNAL(clicked()),
++ this, SLOT(checkDatabaseConnection()));
++
+ #ifdef HAVE_INTERNALMYSQL
+ connect(internalServer, SIGNAL(stateChanged(int)),
+ this, SLOT(slotHandleInternalServerCheckbox(int)));
+ #endif // HAVE_INTERNALMYSQL
+-
+- connect(checkDatabaseConnectionButton, SIGNAL(clicked()),
+- this, SLOT(checkDatabaseConnection()));
+ }
+
+ QString DatabaseWidget::currentDatabaseType() const
+@@ -261,12 +252,24 @@ void DatabaseWidget::setDatabaseInputFields(const QString& currentIndexStr)
+ d->databasePathLabel->setVisible(true);
+ databasePathEdit->setVisible(true);
+ d->expertSettings->setVisible(false);
++
++ connect(databasePathEdit, SIGNAL(urlSelected(KUrl)),
++ this, SLOT(slotChangeDatabasePath(KUrl)));
++
++ connect(databasePathEdit, SIGNAL(textChanged(QString)),
++ this, SLOT(slotDatabasePathEditedDelayed()));
+ }
+ else
+ {
+ d->databasePathLabel->setVisible(false);
+ databasePathEdit->setVisible(false);
+ d->expertSettings->setVisible(true);
++
++ disconnect(databasePathEdit, SIGNAL(urlSelected(KUrl)),
++ this, SLOT(slotChangeDatabasePath(KUrl)));
++
++ disconnect(databasePathEdit, SIGNAL(textChanged(QString)),
++ this, SLOT(slotDatabasePathEditedDelayed()));
+ }
+
+ adjustSize();
+@@ -355,9 +358,9 @@ void DatabaseWidget::setParametersFromSettings(const ApplicationSettings* const
+
+ password->setText(settings->getDatabasePassword());
+
+- /* Now set the type according the database type from the settings.
+- * If no item is found, ignore the setting.
+- */
++ // Now set the type according the database type from the settings.
++ // If no item is found, ignore the setting.
++
+ for (int i=0; icount(); ++i)
+ {
+ //kDebug(50003) << "Comparing comboboxentry on index ["<< i <<"] [" << databaseType->itemData(i)
diff --git a/desktop/kde/graphics/digikam/files/digikam-4.4.0-libkexiv2.patch b/desktop/kde/graphics/digikam/files/digikam-4.4.0-libkexiv2.patch
new file mode 100644
index 0000000000..0e191aace6
--- /dev/null
+++ b/desktop/kde/graphics/digikam/files/digikam-4.4.0-libkexiv2.patch
@@ -0,0 +1,53 @@
+commit f6945f23e0ed1e11f26e2c7e62b02baa8cfa640e
+Author: Pino Toscano
+Date: Tue Oct 14 22:26:19 2014 +0200
+
+ fix libkexiv2 version for AltLangStrEdit::textEdit()
+
+ it is part of current libkexiv2/master only (i.e. post 4.14.x, which
+ is 2.3.x)
+
+diff --git a/libs/imageproperties/captionedit.cpp b/libs/imageproperties/captionedit.cpp
+index 88413fc..70bdb6d 100644
+--- a/libs/imageproperties/captionedit.cpp
++++ b/libs/imageproperties/captionedit.cpp
+@@ -202,7 +202,7 @@ void CaptionEdit::slotAuthorChanged(const QString& text)
+
+ MsgTextEdit* CaptionEdit::textEdit() const
+ {
+-#if KEXIV2_VERSION >= 0x020302
++#if KEXIV2_VERSION >= 0x020400
+ return d->altLangStrEdit->textEdit();
+ #else
+ return 0;
+diff --git a/libs/imageproperties/imagedescedittab.cpp b/libs/imageproperties/imagedescedittab.cpp
+index ebfbae1..3d12777 100644
+--- a/libs/imageproperties/imagedescedittab.cpp
++++ b/libs/imageproperties/imagedescedittab.cpp
+@@ -429,7 +429,7 @@ ImageDescEditTab::ImageDescEditTab(QWidget* const parent)
+
+ // Initialize ---------------------------------------------
+
+-#if KEXIV2_VERSION >= 0x020302
++#if KEXIV2_VERSION >= 0x020400
+ d->titleEdit->textEdit()->installEventFilter(this);
+ d->captionsEdit->textEdit()->installEventFilter(this);
+ #endif
+@@ -532,7 +532,7 @@ void ImageDescEditTab::setFocusToNewTagEdit()
+ void ImageDescEditTab::setFocusToTitlesEdit()
+ {
+ d->tabWidget->setCurrentIndex(Private::DESCRIPTIONS);
+-#if KEXIV2_VERSION >= 0x020302
++#if KEXIV2_VERSION >= 0x020400
+ d->titleEdit->textEdit()->setFocus();
+ #endif
+ }
+@@ -540,7 +540,7 @@ void ImageDescEditTab::setFocusToTitlesEdit()
+ void ImageDescEditTab::setFocusToCommentsEdit()
+ {
+ d->tabWidget->setCurrentIndex(Private::DESCRIPTIONS);
+-#if KEXIV2_VERSION >= 0x020302
++#if KEXIV2_VERSION >= 0x020400
+ d->captionsEdit->textEdit()->setFocus();
+ #endif
+ }
diff --git a/desktop/kde/graphics/digikam/files/digikam-4.6.0.install-libs-dev.patch b/desktop/kde/graphics/digikam/files/digikam-4.6.0.install-libs-dev.patch
new file mode 100644
index 0000000000..8bb1d8fede
--- /dev/null
+++ b/desktop/kde/graphics/digikam/files/digikam-4.6.0.install-libs-dev.patch
@@ -0,0 +1,88 @@
+diff -U 3 -H -d -r -N -- digikam-4.6.0/extra/libkface/libkface/CMakeLists.txt digikam-4.6.0.install-libs-dev/extra/libkface/libkface/CMakeLists.txt
+--- digikam-4.6.0/extra/libkface/libkface/CMakeLists.txt 2014-12-16 08:54:40.000000000 +0100
++++ digikam-4.6.0.install-libs-dev/extra/libkface/libkface/CMakeLists.txt 2015-01-03 21:03:21.172580963 +0100
+@@ -63,9 +63,6 @@
+ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/database/dbconfig.xml
+ DESTINATION ${DATA_INSTALL_DIR}/libkface/database )
+
+-# Check if compilation is done through digiKam SC or not. If yes, do not install header files.
+-if(NOT DIGIKAMSC_COMPILE_LIBKFACE)
+-
+ install(FILES facedetector.h
+ recognitiondatabase.h
+ identity.h
+@@ -76,9 +73,7 @@
+ )
+
+ if(NOT WIN32)
+- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkface.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.pc)
+- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkface.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.lsm)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkface.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.pc)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkface.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.lsm)
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkface.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
+ endif()
+-
+-endif()
+diff -U 3 -H -d -r -N -- digikam-4.6.0/extra/libkgeomap/libkgeomap/CMakeLists.txt digikam-4.6.0.install-libs-dev/extra/libkgeomap/libkgeomap/CMakeLists.txt
+--- digikam-4.6.0/extra/libkgeomap/libkgeomap/CMakeLists.txt 2014-12-16 08:54:40.000000000 +0100
++++ digikam-4.6.0.install-libs-dev/extra/libkgeomap/libkgeomap/CMakeLists.txt 2015-01-03 21:03:38.204621741 +0100
+@@ -73,9 +73,6 @@
+
+ install(TARGETS kgeomap ${INSTALL_TARGETS_DEFAULT_ARGS})
+
+-# Check if compilation is done through digiKam SC or not. If yes, do not install header files.
+-if(NOT DIGIKAMSC_COMPILE_LIBKGEOMAP)
+-
+ install(FILES libkgeomap_export.h
+ abstractmarkertiler.h
+ dragdrophandler.h
+@@ -94,14 +91,12 @@
+ )
+
+ if(NOT WIN32)
+- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkgeomap.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.pc)
+- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkgeomap.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.lsm)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkgeomap.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.pc)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkgeomap.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.lsm)
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
+ endif()
+
+ # Install find cmake script to the system for client applications.
+
+- install(FILES ${CMAKE_SOURCE_DIR}/cmake/modules/FindKGeoMap.cmake
++ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../cmake/modules/FindKGeoMap.cmake
+ DESTINATION ${DATA_INSTALL_DIR}/cmake/modules)
+-
+-endif()
+diff -U 3 -H -d -r -N -- digikam-4.6.0/extra/libmediawiki/libmediawiki/CMakeLists.txt digikam-4.6.0.install-libs-dev/extra/libmediawiki/libmediawiki/CMakeLists.txt
+--- digikam-4.6.0/extra/libmediawiki/libmediawiki/CMakeLists.txt 2014-12-16 08:54:40.000000000 +0100
++++ digikam-4.6.0.install-libs-dev/extra/libmediawiki/libmediawiki/CMakeLists.txt 2015-01-03 21:03:05.940544498 +0100
+@@ -40,9 +40,6 @@
+
+ install(TARGETS mediawiki ${INSTALL_TARGETS_DEFAULT_ARGS})
+
+-# Check if compilation is done through digiKam SC or not. If yes, do not install header files.
+-if(NOT DIGIKAMSC_COMPILE_LIBMEDIAWIKI)
+-
+ install(FILES image.h
+ imageinfo.h
+ mediawiki.h
+@@ -68,14 +65,12 @@
+ DESTINATION ${INCLUDE_INSTALL_DIR}/libmediawiki COMPONENT Devel)
+
+ if(NOT WIN32)
+- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libmediawiki.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.pc)
+- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libmediawiki.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.lsm)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libmediawiki.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.pc)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libmediawiki.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.lsm)
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
+ endif()
+
+ # Install find cmake script to the system for client applications.
+
+- install(FILES ${CMAKE_SOURCE_DIR}/cmake/modules/FindMediawiki.cmake
++ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../cmake/modules/FindMediawiki.cmake
+ DESTINATION ${DATA_INSTALL_DIR}/cmake/modules)
+-
+-endif()
+
diff --git a/desktop/kde/graphics/digikam/files/fix-clapack-cmake.diff b/desktop/kde/graphics/digikam/files/fix-clapack-cmake.diff
new file mode 100644
index 0000000000..c615be570c
--- /dev/null
+++ b/desktop/kde/graphics/digikam/files/fix-clapack-cmake.diff
@@ -0,0 +1,18 @@
+Index: digikam-1.6.0/cmake/modules/FindCLAPACK.cmake
+===================================================================
+--- digikam-1.6.0.orig/cmake/modules/FindCLAPACK.cmake
++++ digikam-1.6.0/cmake/modules/FindCLAPACK.cmake
+@@ -17,11 +17,11 @@ if(CLAPACK_INCLUDE_DIR AND CLAPACK_LIBRA
+
+ else(CLAPACK_INCLUDE_DIR AND CLAPACK_LIBRARY)
+
+- find_path(CLAPACK_INCLUDE_DIR clapack.h PATHS /usr/include/clapack NO_DEFAULT_PATH)
++ find_path(CLAPACK_INCLUDE_DIR NAMES f2c.h PATHS /usr/include/clapack NO_DEFAULT_PATH)
+ if(CLAPACK_INCLUDE_DIR)
+ message(STATUS "Found clapack includes: ${CLAPACK_INCLUDE_DIR}")
+ else(CLAPACK_INCLUDE_DIR)
+- find_path(CLAPACK_INCLUDE_DIR clapack.h PATHS /usr/include/clapack)
++ find_path(CLAPACK_INCLUDE_DIR NAMES f2c.h PATHS /usr/include/clapack)
+ if(CLAPACK_INCLUDE_DIR)
+ message(STATUS "Found clapack includes: ${CLAPACK_INCLUDE_DIR}")
+ endif(CLAPACK_INCLUDE_DIR)
diff --git a/desktop/kde/graphics/digikam/files/splash-digikam.png b/desktop/kde/graphics/digikam/files/splash-digikam.png
new file mode 100644
index 0000000000..6c2a957474
Binary files /dev/null and b/desktop/kde/graphics/digikam/files/splash-digikam.png differ
diff --git a/desktop/kde/graphics/digikam/files/splash-showfoto.png b/desktop/kde/graphics/digikam/files/splash-showfoto.png
new file mode 100644
index 0000000000..d73801eed2
Binary files /dev/null and b/desktop/kde/graphics/digikam/files/splash-showfoto.png differ
diff --git a/desktop/kde/graphics/digikam/pspec.xml b/desktop/kde/graphics/digikam/pspec.xml
new file mode 100644
index 0000000000..bb406b1050
--- /dev/null
+++ b/desktop/kde/graphics/digikam/pspec.xml
@@ -0,0 +1,155 @@
+
+
+
+
+ digikam
+ http://www.digikam.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ digikam
+ app:gui
+ A digital photo management application for KDE4
+ digikam is an advanced digital photo management application for KDE4, which makes importing and organizing digital photos a "snap". The photos can be organized in albums which can be sorted chronologically, by directory layout or by custom collections.
+ mirrors://kde/stable/digikam/digikam-5.3.0.tar.xz
+
+ extra-cmake-modules
+ qt5-base-devel
+ qt5-sql-mysql
+ qt5-sql-sqlite
+ qt5-sql-postgresql
+ qt5-sql-odbc
+ qt5-svg-devel
+ qt5-xmlpatterns-devel
+ qt5-qdbusviewer
+ qt5-x11extras-devel
+ qt5-multimedia-devel
+ qt5-webkit-devel
+ kconfig-devel
+ kxmlgui-devel
+ ki18n-devel
+ kwindowsystem-devel
+ kservice-devel
+ solid-devel
+ kcoreaddons-devel
+ knotifyconfig-devel
+ knotifications-devel
+ kbookmarks-devel
+ threadweaver-devel
+ kiconthemes-devel
+ kfilemetadata-devel
+ kdelibs4-support-devel
+ kparts-devel
+ sonnet-devel
+ ktextwidgets-devel
+ kcrash-devel
+ kunitconversion-devel
+ kcalcore-devel
+ akonadi-devel
+ akonadi-contacts-devel
+ karchive-devel
+ kio-devel
+ opencv-devel
+ tiff-devel
+ libpng-devel
+ libjpeg-turbo-devel
+ boost-devel
+ lcms2-devel
+ expat-devel
+ exiv2-libs
+ flex
+ bison
+ mesa-devel
+ libmediawiki-devel
+ libkvkontakte-devel
+ libkipi-devel
+ libksane-devel
+ jasper-devel
+ marble-devel
+ eigen3
+ libgphoto2-devel
+ libgomp-devel
+ liblqr-devel
+ libkface-devel
+ glibc-devel
+ zlib-devel
+ libical-devel
+ libXext-devel
+ glib2-devel
+ libX11-devel
+ doxygen
+ libICE-devel
+ kdoctools-devel
+ qt5-phonon-devel
+
+
+
+
+ digikam
+
+ kio
+ mesa
+ tiff
+ expat
+ ki18n
+ lcms2
+ solid
+ jasper
+ libX11
+ libgcc
+ liblqr
+ libpng
+ marble
+ opencv
+ kconfig
+ kxmlgui
+ libgomp
+ libkipi
+ karchive
+ kcalcore
+ kservice
+ libksane
+ qt5-base
+ kcontacts
+ exiv2-libs
+ kbookmarks
+ libgphoto2
+ qt5-webkit
+ kcompletion
+ kcoreaddons
+ kiconthemes
+ libmediawiki
+ threadweaver
+ kfilemetadata
+ knotifyconfig
+ kwindowsystem
+ libjpeg-turbo
+ libkvkontakte
+ qt5-x11extras
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+ qt5-xmlpatterns
+ akonadi-contacts
+ kdelibs4-support
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/man
+
+
+
+
+
+ 2016-11-1
+ 5.3.0
+ First release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/graphics/digikam/translations.xml b/desktop/kde/graphics/digikam/translations.xml
new file mode 100644
index 0000000000..a27d06984e
--- /dev/null
+++ b/desktop/kde/graphics/digikam/translations.xml
@@ -0,0 +1,19 @@
+
+
+
+ digikam
+ KDE4 için bir sayısal fotoğraf yönetim uygulaması
+ DigiKam, sayısal fotoğrafların düzenlenmesini kolaylaştıran gelişmiş bir yönetim uygulamasıdır.
+
+
+
+ digikam-devel
+ digikam için geliştirme dosyaları
+
+
+
+ kipi-plugins
+ KDE4 için Kipi(KDE Resim Eklenti Arayüzü) eklentileri
+ kipi-plugins, digiKam ve gwenview gibi KDE grafik uygulamaları için Kipi eklentileri içerir.
+
+
diff --git a/pisi-index.xml b/pisi-index.xml
index 2cc5884226..3c38c6d0a8 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -7749,10 +7749,10 @@
LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office.LibreOffice, pek çok farklı işletim sisteminde çalışabilen açık kaynak kodlu bir yazılım projesidir. LibreOffice, kelime işlemci, hesap tablosu, sunum ve çizim programları, formül düzenleyici gibi temel masaüstü ofis uygulamalarını içerir ve alışılmış ofis programlarının özelliklerini sunar. Microsoft Office dosyaları da dahil olmak üzere bilinen ofis dosya formatlarıyla uyumlu çalışır.libreoffice-startcenter
- http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-5.2.0.1.tar.xz
- http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-help-5.2.0.1.tar.xz
- http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-dictionaries-5.2.0.1.tar.xz
- http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-translations-5.2.0.1.tar.xz
+ http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-5.2.3.3.tar.xz
+ http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-help-5.2.3.3.tar.xz
+ http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-dictionaries-5.2.3.3.tar.xz
+ http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-translations-5.2.3.3.tar.xzantgperf
@@ -7794,9 +7794,6 @@
librevenge-develmesa-devel
-
- make-pyuno-work-with-system-wide-module-install.diff
- office/libreoffice/libreoffice/pspec.xml
@@ -7858,7 +7855,7 @@
/usr/lib/libreoffice/program//usr/share/gir-1.0/LOKDocView-0.1.gir/usr/lib/girepository-1.0/LOKDocView-0.1.typelib
- /usr/share/bash-completion/completions
+ /usr/share/bash-completionlibreoffice-splash.png
@@ -10378,7 +10375,8 @@
/usr/lib/libreoffice/readmes/*_th/usr/lib/libreoffice/share/autothxt/th
- /usr/lib/libreoffice/share/registry/*th.xcd
+ /usr/lib/libreoffice/share/registry/*_th.xcd
+ /usr/lib/libreoffice/share/registry/Langpack-th.xcd/usr/lib/libreoffice/program/resource/*th.res/usr/lib/libreoffice/share/registry/res/*_th.xcd/usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/th.zip
@@ -10636,6 +10634,13 @@
+
+ 2016-11-10
+ 5.2.3.3
+ Release Bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+ 2016-06-265.2.0.1
@@ -44751,15 +44756,19 @@ thunar-volman is installed and configured properly, and you plug in your digical
lame-devellibkcompactdisc-devellibvorbis-devel
- libogg-develqt5-base-develki18n-develextra-cmake-moduleslibogg-devel
- kconfig-develkcompletion-develkcoreaddons-develkconfigwidgets-devel
+ kdesignerplugin
+ kemoticons-devel
+ kitemmodels-devel
+ kinit-devel
+ kunitconversion-devel
+ libkcddbdesktop/kde/applications/audiocd-kio/pspec.xml
@@ -44782,6 +44791,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
kcoreaddonskconfigwidgetskdelibs4-support
+ libkcddb/usr/share
@@ -44803,7 +44813,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
- 2016-11-06
+ 2016-11-0916.08.2_20161106First ReleaseStefan Gronewold
@@ -46803,7 +46813,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
- 2016-11-06
+ 2016-11-095.0.0_20161106First ReleaseStefan Gronewold
@@ -47990,6 +48000,12 @@ thunar-volman is installed and configured properly, and you plug in your digical
ki18n-develqt5-base-develsolid-devel
+ kdesignerplugin
+ kdoctools-devel
+ kemoticons-devel
+ kitemmodels-devel
+ kinit-devel
+ kunitconversion-develdesktop/kde/applications/libkcompactdisc/pspec.xml
@@ -48026,7 +48042,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
- 2016-11-07
+ 2016-11-0916.08.2_20161106First ReleaseStefan Gronewold
@@ -49529,7 +49545,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
- 2016-11-06
+ 2016-11-095.0.0_20161106First ReleaseStefan Gronewold
@@ -79142,6 +79158,161 @@ thunar-volman is installed and configured properly, and you plug in your digical
+
+
+ digikam
+ http://www.digikam.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ app:gui
+ desktop.kde.graphics
+ A digital photo management application for KDE4
+ KDE4 için bir sayısal fotoğraf yönetim uygulaması
+ digikam is an advanced digital photo management application for KDE4, which makes importing and organizing digital photos a "snap". The photos can be organized in albums which can be sorted chronologically, by directory layout or by custom collections.
+ DigiKam, sayısal fotoğrafların düzenlenmesini kolaylaştıran gelişmiş bir yönetim uygulamasıdır.
+ digikam
+ mirrors://kde/stable/digikam/digikam-5.3.0.tar.xz
+
+ extra-cmake-modules
+ qt5-base-devel
+ qt5-sql-mysql
+ qt5-sql-sqlite
+ qt5-sql-postgresql
+ qt5-sql-odbc
+ qt5-svg-devel
+ qt5-xmlpatterns-devel
+ qt5-qdbusviewer
+ qt5-x11extras-devel
+ qt5-multimedia-devel
+ qt5-webkit-devel
+ kconfig-devel
+ kxmlgui-devel
+ ki18n-devel
+ kwindowsystem-devel
+ kservice-devel
+ solid-devel
+ kcoreaddons-devel
+ knotifyconfig-devel
+ knotifications-devel
+ kbookmarks-devel
+ threadweaver-devel
+ kiconthemes-devel
+ kfilemetadata-devel
+ kdelibs4-support-devel
+ kparts-devel
+ sonnet-devel
+ ktextwidgets-devel
+ kcrash-devel
+ kunitconversion-devel
+ kcalcore-devel
+ akonadi-devel
+ akonadi-contacts-devel
+ karchive-devel
+ kio-devel
+ opencv-devel
+ tiff-devel
+ libpng-devel
+ libjpeg-turbo-devel
+ boost-devel
+ lcms2-devel
+ expat-devel
+ exiv2-libs
+ flex
+ bison
+ mesa-devel
+ libmediawiki-devel
+ libkvkontakte-devel
+ libkipi-devel
+ libksane-devel
+ jasper-devel
+ marble-devel
+ eigen3
+ libgphoto2-devel
+ libgomp-devel
+ liblqr-devel
+ libkface-devel
+ glibc-devel
+ zlib-devel
+ libical-devel
+ libXext-devel
+ glib2-devel
+ libX11-devel
+ doxygen
+ libICE-devel
+ kdoctools-devel
+ qt5-phonon-devel
+
+ desktop/kde/graphics/digikam/pspec.xml
+
+
+ digikam
+
+ kio
+ mesa
+ tiff
+ expat
+ ki18n
+ lcms2
+ solid
+ jasper
+ libX11
+ libgcc
+ liblqr
+ libpng
+ marble
+ opencv
+ kconfig
+ kxmlgui
+ libgomp
+ libkipi
+ karchive
+ kcalcore
+ kservice
+ libksane
+ qt5-base
+ kcontacts
+ exiv2-libs
+ kbookmarks
+ libgphoto2
+ qt5-webkit
+ kcompletion
+ kcoreaddons
+ kiconthemes
+ libmediawiki
+ threadweaver
+ kfilemetadata
+ knotifyconfig
+ kwindowsystem
+ libjpeg-turbo
+ libkvkontakte
+ qt5-x11extras
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+ qt5-xmlpatterns
+ akonadi-contacts
+ kdelibs4-support
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/man
+
+
+
+
+ 2016-11-1
+ 5.3.0
+ First release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+ icon-theme-adwaita
@@ -116039,7 +116210,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları.Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux.Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur.
- https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.4.0.tar.xz
+ https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.8.0.tar.xziptables-devellinux-atm-devel
@@ -116059,15 +116230,22 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
/etc/sbin
- /usr/sbin/lib/usr/lib/usr/share/man/usr/share/doc
+ /usr/share/bash-completion/var/lib
+
+ 2016-10-19
+ 4.8.0
+ Version bump.
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+ 2016-06-094.4.0
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index b8c191b2bb..119422b98b 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-b2f0f4fb6c37bd34e4413c0a909d34bc802326fc
\ No newline at end of file
+910fdbc05d21f85b896ebd8535cced9f7eeb74b8
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 64a50e4efc..35e4b19ed2 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index 1109b5da97..8e65cb3303 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-d7aab17bb5bd2c30c41333b3a3671b4c12bd4a8f
\ No newline at end of file
+7af5dab6da3c4901b2e41a421233a5ebe5ca91f8
\ No newline at end of file