diff --git a/desktop/kde/addon/libdmtx/actions.py b/desktop/kde/addon/libdmtx/actions.py
new file mode 100644
index 0000000000..6630c0c918
--- /dev/null
+++ b/desktop/kde/addon/libdmtx/actions.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+#
+# 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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ #shelltools.system("./autogen.sh")
+ autotools.configure("--disable-static")
+
+def build():
+ autotools.make()
+
+def check():
+ autotools.make("check")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "NEWS", "README", "README.linux")
diff --git a/desktop/kde/addon/libdmtx/pspec.xml b/desktop/kde/addon/libdmtx/pspec.xml
new file mode 100644
index 0000000000..1a03ee264d
--- /dev/null
+++ b/desktop/kde/addon/libdmtx/pspec.xml
@@ -0,0 +1,61 @@
+
+
+
+
+ libdmtx
+ http://www.libdmtx.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2+
+ library
+ A Library for working with Data Matrix 2D bar-codes
+ libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices.
+ http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz
+
+ imagemagick-devel
+
+
+
+
+ libdmtx
+
+ imagemagick
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ libdmtx-devel
+ Development files for libdmtx
+
+ libdmtx
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/share/man/man3
+
+
+
+
+
+ 2015-06-05
+ 0.7.4
+ Rebuild.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2011-08-09
+ 0.7.4
+ First release
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+
+
diff --git a/desktop/kde/addon/libdmtx/translations.xml b/desktop/kde/addon/libdmtx/translations.xml
new file mode 100644
index 0000000000..c47877716e
--- /dev/null
+++ b/desktop/kde/addon/libdmtx/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ libdmtx
+ Data Matrix 2D barkodlarıyla çalışmak için kitaplık
+ libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır.
+
+
+
+ libdmtx-devel
+ libdmtx için geliştirme dosyaları
+
+
diff --git a/desktop/kde/addon/prison-qt5/actions.py b/desktop/kde/addon/prison-qt5/actions.py
new file mode 100644
index 0000000000..a4d71bd755
--- /dev/null
+++ b/desktop/kde/addon/prison-qt5/actions.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import kde5
+from pisi.actionsapi import pisitools
+
+def setup():
+ kde5.configure()
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
+
+ pisitools.dodoc("LICENSE")
diff --git a/desktop/kde/addon/prison-qt5/pspec.xml b/desktop/kde/addon/prison-qt5/pspec.xml
new file mode 100755
index 0000000000..fe1786c510
--- /dev/null
+++ b/desktop/kde/addon/prison-qt5/pspec.xml
@@ -0,0 +1,70 @@
+
+
+
+
+ prison-qt5
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+ MIT
+ library
+ A barcode API to produce QRCode barcodes and DataMatrix barcode
+ A barcode API to produce QRCode barcodes and DataMatrix barcode.
+ http://download.kde.org/stable/prison/1.1/src/prison-1.1.0.tar.xz
+
+ python3
+ mesa-devel
+
+
+
+
+ prison-qt5
+
+ qt
+ libgcc
+ mesa
+ libdmtx
+ qrencode
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+ prison
+
+
+ prison
+
+
+
+
+ prison-qt5-devel
+ Development files for libepoxy
+
+ prison-qt5
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+ prison-devel
+
+
+ prison-devel
+
+
+
+
+
+ 2015-06-29
+ 1.1.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/addon/qrencode/actions.py b/desktop/kde/addon/qrencode/actions.py
new file mode 100644
index 0000000000..f4557c95ee
--- /dev/null
+++ b/desktop/kde/addon/qrencode/actions.py
@@ -0,0 +1,27 @@
+# -*- coding: utf-8 -*-
+#
+# 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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.autoreconf("-vif")
+ shelltools.system("./autogen.sh")
+
+ autotools.configure("--with-tests")
+
+def build():
+ autotools.make()
+
+def check():
+ shelltools.cd("tests")
+ shelltools.system("./test_all.sh")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("COPYING", "NEWS", "README")
diff --git a/desktop/kde/addon/qrencode/pspec.xml b/desktop/kde/addon/qrencode/pspec.xml
new file mode 100644
index 0000000000..e49e23820f
--- /dev/null
+++ b/desktop/kde/addon/qrencode/pspec.xml
@@ -0,0 +1,70 @@
+
+
+
+
+ qrencode
+ http://fukuchi.org/works/qrencode/index.en.html
+
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+ LGPLv2.1
+ library
+ A C library for encoding data in a QR code symbol
+ qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust.
+ http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz
+
+ libsdl-devel
+ m4
+
+
+
+
+ qrencode
+
+ libpng
+
+
+ /usr/lib
+ /usr/bin/qrencode
+ /usr/share/man/man1
+ /usr/share/doc
+
+
+
+
+ qrencode-devel
+ Development files for qrencode
+
+ qrencode
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-02-22
+ 3.4.4
+ Rebuild.
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2015-02-22
+ 3.3.1
+ Rebuild.
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2012-04-05
+ 3.3.1
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
diff --git a/desktop/kde/addon/qrencode/translations.xml b/desktop/kde/addon/qrencode/translations.xml
new file mode 100644
index 0000000000..031bf56a9f
--- /dev/null
+++ b/desktop/kde/addon/qrencode/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qrencode
+ QR kod sembolüne veri gömmek için bir kitaplık
+ qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır.
+
+
+
+ qrencode-devel
+ qrencode için geliştirme dosyaları
+
+