diff --git a/desktop/component.xml b/desktop/component.xml
new file mode 100644
index 0000000000..f2e99cf59d
--- /dev/null
+++ b/desktop/component.xml
@@ -0,0 +1,3 @@
+
+ desktop
+
diff --git a/desktop/toolkit/component.xml b/desktop/toolkit/component.xml
new file mode 100644
index 0000000000..d7e1621344
--- /dev/null
+++ b/desktop/toolkit/component.xml
@@ -0,0 +1,3 @@
+
+ desktop.toolkit
+
diff --git a/desktop/toolkit/qt5/component.xml b/desktop/toolkit/qt5/component.xml
new file mode 100644
index 0000000000..8b3bb782de
--- /dev/null
+++ b/desktop/toolkit/qt5/component.xml
@@ -0,0 +1,3 @@
+
+ qt5
+
diff --git a/desktop/toolkit/qt5/qt5-accountsservice/actions.py b/desktop/toolkit/qt5/qt5-accountsservice/actions.py
new file mode 100644
index 0000000000..d32ae6b60a
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-accountsservice/actions.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import get
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
+def build():
+ shelltools.cd("build")
+ cmaketools.make()
+
+def install():
+ shelltools.cd("build")
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.domove("/usr/lib64/*", "/usr/lib")
+ pisitools.removeDir("/usr/lib64")
+ shelltools.cd("..")
+ pisitools.dodoc("LICENSE", "README.md")
diff --git a/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml b/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml
new file mode 100644
index 0000000000..b1a6216127
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml
@@ -0,0 +1,59 @@
+
+
+
+
+ qt5-accountsservice
+ https://github.com/hawaii-desktop/qt-accountsservice-addon
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Qt5 - AccountService addon
+ Qt5 - AccountService addon
+ LGPLv2.1-linking-exception
+ https://github.com/hawaii-desktop/qtaccountsservice/archive/v0.1.2.tar.gz
+
+ libgcc
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-accountsservice
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/share/doc
+ /usr/lib/qt5/bin/
+ /usr/bin
+
+
+ libgcc
+ qt5-base
+ qt5-declarative
+
+
+
+
+ qt5-qtaccountsservice-devel
+
+ /usr/include
+
+
+ qt5-base
+ qt5-accountsservice
+
+
+
+
+
+ 2015-06-03
+ 0.1.2
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-accountsservice/translations.xml b/desktop/toolkit/qt5/qt5-accountsservice/translations.xml
new file mode 100644
index 0000000000..db94b5fd92
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-accountsservice/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-accountservice
+ Qt5 - Hesap Hizmeti eklentisi
+ Qt5 - Hesap Hizmeti eklentisi
+
+
diff --git a/desktop/toolkit/qt5/qt5-base/actions.py b/desktop/toolkit/qt5/qt5-base/actions.py
new file mode 100644
index 0000000000..163972543e
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-base/actions.py
@@ -0,0 +1,124 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+import os
+
+WorkDir = "qtbase-opensource-src-%s" % get.srcVERSION().replace('_','-').replace('pre1', 'tp')
+
+qtbase = qt5.prefix
+absoluteWorkDir = "%s/%s" % (get.workDIR(), WorkDir)
+
+#Temporary bindir to avoid qt4 conflicts
+bindirQt5="/usr/lib/qt5/bin"
+
+def setup():
+ checkdeletepath="%s/qtbase/src/3rdparty" % absoluteWorkDir
+ for dir in ('libjpeg', 'freetype', 'libpng', 'zlib', "xcb", "sqlite"):
+ if os.path.exists(checkdeletepath+dir):
+ shelltools.unlinkDir(checkdeletepath+dir)
+
+ filteredCFLAGS = get.CFLAGS().replace("-g3", "-g")
+ filteredCXXFLAGS = get.CXXFLAGS().replace("-g3", "-g")
+
+ vars = {"PISILINUX_CC" : get.CC() + (" -m32" if get.buildTYPE() == "emul32" else ""),
+ "PISILINUX_CXX": get.CXX() + (" -m32" if get.buildTYPE() == "emul32" else ""),
+ "PISILINUX_CFLAGS": filteredCFLAGS + (" -m32" if get.buildTYPE() == "emul32" else ""),
+ "PISILINUX_LDFLAGS": get.LDFLAGS() + (" -m32" if get.buildTYPE() == "emul32" else "")}
+
+ for k, v in vars.items():
+ pisitools.dosed("mkspecs/common/g++-base.conf", k, v)
+ pisitools.dosed("mkspecs/common/g++-unix.conf", k, v)
+
+ shelltools.export("CFLAGS", filteredCFLAGS)
+ shelltools.export("CXXFLAGS", filteredCXXFLAGS)
+ #check that dosed commands without releated patches
+ pisitools.dosed("mkspecs/common/gcc-base-unix.conf", "\-Wl,\-rpath,")
+ pisitools.dosed("mkspecs/common/gcc-base.conf", "\-O2", filteredCFLAGS)
+ pisitools.dosed("mkspecs/common/gcc-base.conf", "^(QMAKE_LFLAGS\s+\+=)", r"\1 %s" % get.LDFLAGS())
+
+ if not get.buildTYPE() == "emul32":
+ #-no-pch makes build ccache-friendly
+ options = "-v -confirm-license -opensource -no-rpath -no-use-gold-linker\
+ -prefix %s \
+ -bindir %s \
+ -headerdir %s \
+ -archdatadir %s\
+ -docdir %s \
+ -plugindir %s \
+ -importdir %s \
+ -qmldir %s \
+ -datadir %s \
+ -testsdir %s \
+ -translationdir %s \
+ -sysconfdir %s \
+ -examplesdir %s \
+ -libdir %s \
+ -system-harfbuzz \
+ -system-sqlite \
+ -openssl-linked \
+ -nomake tests \
+ -nomake examples \
+ -optimized-qmake \
+ -reduce-relocations \
+ -dbus-linked \
+ -feature-menu \
+ -feature-textdate \
+ -feature-ftp \
+ -xcursor" % (qt5.prefix, bindirQt5, qt5.headerdir, qt5.archdatadir, qt5.docdir, qt5.plugindir, qt5.importdir, qt5.qmldir, qt5.datadir, qt5.testdir, qt5.translationdir, qt5.sysconfdir, qt5.examplesdir, qt5.libdir)
+ else:
+ pisitools.dosed("mkspecs/linux-g++-64/qmake.conf", "-m64", "-m32")
+ shelltools.export("LDFLAGS", "-m32 %s" % get.LDFLAGS())
+ options = "-no-pch -v -confirm-license -opensource -no-use-gold-linker\
+ -platform linux-g++-32 \
+ -xplatform linux-g++-32 \
+ -prefix /usr/lib32 \
+ -bindir /usr/lib32/qt5/bin \
+ -docdir /usr/share/doc/qt \
+ -headerdir /usr/lib32/qt5/include/qt5 \
+ -datadir /usr/share/qt5 \
+ -sysconfdir /etc/xdg \
+ -examplesdir /usr/share/doc/qt/examples \
+ -system-sqlite \
+ -openssl-linked \
+ -nomake examples \
+ -no-xcb \
+ -no-rpath \
+ -optimized-qmake \
+ -dbus-linked \
+ -system-harfbuzz \
+ -libdir /usr/lib32/ \
+ -archdatadir /usr/lib32/qt5/"
+
+ autotools.rawConfigure(options)
+
+def build():
+ shelltools.export("LD_LIBRARY_PATH", "%s/lib:%s" % (get.curDIR(), get.ENV("LD_LIBRARY_PATH")))
+ autotools.make()
+
+def install():
+ if get.buildTYPE() == "emul32":
+ qt5.install("INSTALL_ROOT=%s32" % get.installDIR())
+ shelltools.move("%s32/usr/lib32" % get.installDIR(), "%s/usr" % get.installDIR())
+ return
+
+ pisitools.dodir(qt5.libdir)
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ mkspecPath = "%s/mkspecs" % qt5.archdatadir
+
+ pisitools.remove("/usr/lib/*.prl")
+
+ pisitools.dodoc("LGPL_EXCEPTION.txt", "LICENSE.*")
diff --git a/desktop/toolkit/qt5/qt5-base/files/mkspecs1.patch b/desktop/toolkit/qt5/qt5-base/files/mkspecs1.patch
new file mode 100644
index 0000000000..6be430fe04
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-base/files/mkspecs1.patch
@@ -0,0 +1,30 @@
+--- g++-base.conf 2014-12-05 18:24:38.000000000 +0200
++++ qtbase-opensource-src-5.4.0/mkspecs/common/g++-base.conf 2015-02-16 12:34:43.603049664 +0200
+@@ -10,17 +10,22 @@
+
+ QMAKE_COMPILER = gcc
+
+-QMAKE_CC = gcc
++QMAKE_CC = PISILINUX_CC
+
+ QMAKE_LINK_C = $$QMAKE_CC
+ QMAKE_LINK_C_SHLIB = $$QMAKE_CC
+
+-QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += $$QMAKE_CFLAGS_OPTIMIZE -g
++QMAKE_CFLAGS_RELEASE += PISILINUX_CFLAGS
++QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += PISILINUX_CFLAGS -g
+
+-QMAKE_CXX = g++
++QMAKE_CXX = PISILINUX_CXX
+
+-QMAKE_LINK = $$QMAKE_CXX
+-QMAKE_LINK_SHLIB = $$QMAKE_CXX
++QMAKE_LINK = PISILINUX_CXX
++QMAKE_LINK_SHLIB = PISILINUX_CXX
++QMAKE_LINK_C = PISILINUX_CC
++QMAKE_LINK_C_SHLIB = PISILINUX_CC
++
++QMAKE_LFLAGS_RELEASE += PISILINUX_LDFLAGS
+
+ QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO += $$QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO
+
diff --git a/desktop/toolkit/qt5/qt5-base/files/mkspecs2.patch b/desktop/toolkit/qt5/qt5-base/files/mkspecs2.patch
new file mode 100644
index 0000000000..c9abf6ddd0
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-base/files/mkspecs2.patch
@@ -0,0 +1,9 @@
+--- g++-unix.conf 2015-02-16 12:35:34.978050836 +0200
++++ qtbase-opensource-src-5.4.0/mkspecs/common/g++-unix.conf 2015-02-16 12:35:58.703051378 +0200
+@@ -10,5 +10,5 @@
+
+ include(g++-base.conf)
+
+-QMAKE_LFLAGS_RELEASE += -Wl,-O1
++QMAKE_LFLAGS_RELEASE += PISILINUX_LDFLAGS
+ QMAKE_LFLAGS_NOUNDEF += -Wl,--no-undefined
diff --git a/desktop/toolkit/qt5/qt5-base/files/mkspecs3.patch b/desktop/toolkit/qt5/qt5-base/files/mkspecs3.patch
new file mode 100644
index 0000000000..718d54a1f0
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-base/files/mkspecs3.patch
@@ -0,0 +1,11 @@
+--- linux.conf 2014-12-05 18:24:38.000000000 +0200
++++ qtbase-opensource-src-5.4.0/mkspecs/common/linux.conf 2015-02-16 12:36:52.547052606 +0200
+@@ -49,7 +49,7 @@
+ QMAKE_NM = nm -P
+ QMAKE_RANLIB =
+
+-QMAKE_STRIP = strip
++QMAKE_STRIP =
+ QMAKE_STRIPFLAGS_LIB += --strip-unneeded
+ QMAKE_INSTALL_FILE = install -m 644 -p
+ QMAKE_INSTALL_PROGRAM = install -m 755 -p
diff --git a/desktop/toolkit/qt5/qt5-base/pspec.xml b/desktop/toolkit/qt5/qt5-base/pspec.xml
new file mode 100644
index 0000000000..777c2d5007
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-base/pspec.xml
@@ -0,0 +1,263 @@
+
+
+
+
+ qt5-base
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Cross platform application and UI framework
+ Cross platform application and UI development framework
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtbase-opensource-src-5.4.2.tar.xz
+
+ alsa-lib-devel
+ at-spi2-core-devel
+ cups-devel
+ dbus-devel
+ zlib-devel
+ glib2-devel
+ desktop-file-utils
+ fontconfig-devel
+ geoclue-devel
+ gperf
+ gst-plugins-base-devel
+ gstreamer-devel
+ gtk2-devel
+ harfbuzz-devel
+ icon-theme-hicolor
+ leveldb-devel
+ firebird-superserver
+ libjpeg-turbo-devel
+ mariadb-lib
+ libmng-devel
+ pulseaudio-libs-devel
+ webp-devel
+ libxcb-devel
+ libXcomposite-devel
+ libxkbcommon-devel
+ libxslt-devel
+ mesa-devel
+ libmtdev-devel
+ nss-devel
+ openal-devel
+ pciutils-devel
+ postgresql-server
+ python-devel
+ ruby-devel
+ sqlite-devel
+ unixODBC-devel
+ xcb-proto
+ xcb-util-devel
+ xcb-util-image-devel
+ xcb-util-keysyms-devel
+ xcb-util-wm-devel
+ tiff-devel
+ libdrm-devel
+ DirectFB-devel
+ libpng-devel
+ libudev-devel
+ libSM-devel
+ libICE-devel
+ libX11-devel
+ libXext-devel
+ firebird-devel
+ unixODBC-devel
+ libXrandr-devel
+ libXrender-devel
+ xcb-util-renderutil-devel
+ openssl-devel
+ freetype-devel
+
+
+
+ mkspecs1.patch
+ mkspecs2.patch
+ mkspecs3.patch
+
+
+
+
+ qt5-base
+
+ cups
+ dbus
+ gtk2
+ mesa
+ zlib
+ glib2
+ icu4c
+ libSM
+ libXi
+ pango
+ libICE
+ libX11
+ libdrm
+ DirectFB
+ libpng
+ libxcb
+ libudev
+ openssl
+ freetype
+ harfbuzz
+ libmtdev
+ fontconfig
+ libXrender
+ xcb-util-wm
+ libxkbcommon
+ libjpeg-turbo
+ xcb-util-image
+ xcb-util-keysyms
+ xcb-util-renderutil
+
+
+ /usr/lib
+ /usr/lib/qt5/imports
+ /usr/lib/qt5/qml
+ /usr/lib/qt5/plugins
+ /usr/share/qt5/translations
+ /usr/lib/qt5/bin
+ /usr/bin
+ /usr/share/doc
+
+
+
+
+ qt5-base-devel
+ Development files for Qt 5
+ Development files for Qt 5
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib/cmake
+ /usr/lib/qt5/mkspecs
+ /usr/lib/*.prl
+
+
+ qt5-base
+
+
+
+
+ qt5-sql-mysql
+
+ qt5-base
+ mariadb-lib
+
+
+ /usr/lib/qt5/plugins/sqldrivers/libqsqlmysql.so
+
+
+
+
+ qt5-sql-postgresql
+
+ qt5-base
+ postgresql-lib
+
+
+ /usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so
+
+
+
+
+ qt5-sql-sqlite
+
+ qt5-base
+ sqlite
+
+
+ /usr/lib/qt5/plugins/sqldrivers/libqsqlite.so
+
+
+
+
+ qt5-sql-odbc
+
+ qt5-base
+ unixODBC
+
+
+ /usr/lib/qt5/plugins/sqldrivers/libqsqlodbc.so
+
+
+
+
+ qt5-base-32bit
+ emul32
+ 32-bit shared libraries for qt5
+ emul32
+
+
+ cups-32bit
+ dbus-32bit
+ qt5-base-devel
+ gtk2-32bit
+ mesa-32bit
+ zlib-32bit
+ glib2-32bit
+ glibc-32bit
+ icu4c-32bit
+ pango-32bit
+ libX11-32bit
+ libdrm-32bit
+ libpng-32bit
+ sqlite-32bit
+ libudev-32bit
+ openssl-32bit
+ freetype-32bit
+ harfbuzz-32bit
+ libmtdev-32bit
+ fontconfig-32bit
+ libXrender-32bit
+ libjpeg-turbo-32bit
+
+ libgcc
+ libpcre
+ qt5-base-devel
+ cups-32bit
+ dbus-32bit
+ gtk2-32bit
+ mesa-32bit
+ zlib-32bit
+ glib2-32bit
+ glibc-32bit
+ icu4c-32bit
+ pango-32bit
+ libX11-32bit
+ libdrm-32bit
+ libpng-32bit
+ sqlite-32bit
+ libudev-32bit
+ openssl-32bit
+ freetype-32bit
+ harfbuzz-32bit
+ libmtdev-32bit
+ fontconfig-32bit
+ libXrender-32bit
+ libjpeg-turbo-32bit
+
+
+ /usr/lib32
+
+
+
+
+
+ 2015-06-02
+ 5.4.2
+ Version bump.
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-04-23
+ 5.4.1
+ First Release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-base/translations.xml b/desktop/toolkit/qt5/qt5-base/translations.xml
new file mode 100644
index 0000000000..9b58784e37
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-base/translations.xml
@@ -0,0 +1,46 @@
+
+
+
+ qt5-base
+ Qt5 araç takımı, sürüm 5
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır.
+ Qt est une boîte à outils graphique multi-plateforme.
+ Qt es un toolkit para GUI multiplataforma.
+
+
+
+ qt5-base-devel
+ Qt5 için geliştirme dosyaları
+
+
+
+ qt5-docs
+ Qt5 için geliştirme belgeleri ve Qt Assistant aracı
+
+
+
+ qt5-sql-ibase
+ Qt5'in SQL sınıfları için IBase sürücüsü
+
+
+
+ qt5-sql-mysql
+ Qt5'in SQL sınıfları için MySQL sürücüsü
+
+
+
+ qt5-sql-odbc
+ Qt5'in SQL sınıfları için ODBC sürücüsü
+
+
+
+ qt5-sql-postgresql
+ Qt5'in SQL sınıfları için PostgreSQL sürücüsü
+
+
+
+ qt5-sql-sqlite
+ Qt5'in SQL sınıfları için SQLite sürücüsü
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-configuration/actions.py b/desktop/toolkit/qt5/qt5-configuration/actions.py
new file mode 100644
index 0000000000..ef853544d9
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-configuration/actions.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import get
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
+def build():
+ shelltools.cd("build")
+ cmaketools.make()
+
+def install():
+ shelltools.cd("build")
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.domove("/usr/lib64/*", "/usr/lib")
+ pisitools.removeDir("/usr/lib64")
+ shelltools.cd("..")
+ pisitools.dodoc("LICENSE.FDL", "LICENSE.GPL", "LICENSE.LGPL", "README.md")
diff --git a/desktop/toolkit/qt5/qt5-configuration/pspec.xml b/desktop/toolkit/qt5/qt5-configuration/pspec.xml
new file mode 100644
index 0000000000..0e783f4c1e
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-configuration/pspec.xml
@@ -0,0 +1,61 @@
+
+
+
+
+ qt5-configuration
+ https://github.com/hawaii-desktop/qt-accountsservice-addon
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Settings API with change notifications for Qt
+ Settings API with change notifications for Qt
+ LGPLv2.1-linking-exception
+ http://sourceforge.net/projects/mauios/files/hawaii/qtconfiguration/qtconfiguration-0.2.1.tar.gz
+
+ libgcc
+ glib2-devel
+ dconf-devel
+ qt5-base-devel
+
+
+
+
+ qt5-configuration
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/share/doc
+ /usr/lib/qt5/bin/
+ /usr/bin
+
+
+ libgcc
+ glib2
+ dconf
+ qt5-base
+
+
+
+
+ qt5-configuration-devel
+
+ /usr/lib/pkgconfig
+ /usr/include
+
+
+ qt5-base
+
+
+
+
+
+ 2015-06-03
+ 0.2.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-configuration/translations.xml b/desktop/toolkit/qt5/qt5-configuration/translations.xml
new file mode 100644
index 0000000000..0c17199926
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-configuration/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-configuration
+ Settings API with change notifications for Qt
+ Settings API with change notifications for Qt
+
+
diff --git a/desktop/toolkit/qt5/qt5-connectivity/actions.py b/desktop/toolkit/qt5/qt5-connectivity/actions.py
new file mode 100644
index 0000000000..7238513a36
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-connectivity/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-connectivity/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-connectivity/pspec.xml b/desktop/toolkit/qt5/qt5-connectivity/pspec.xml
new file mode 100644
index 0000000000..9b2e2e07fb
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-connectivity/pspec.xml
@@ -0,0 +1,65 @@
+
+
+
+
+ qt5-connectivity
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides access to Bluetooth hardware
+ Provides access to Bluetooth hardware
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtconnectivity-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+ bluez-libs-devel
+
+
+
+
+ qt5-connectivity
+
+ /usr/bin
+ /usr/lib
+ /usr/share/licenses
+ /usr/lib/qt5
+ /usr/lib/qt5/bin/
+
+
+ qt5-base
+ qt5-declarative
+ bluez-libs
+
+
+
+
+ qt5-connectivity-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-02
+ 5.4.2
+ Version bump.
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-connectivity/translations.xml b/desktop/toolkit/qt5/qt5-connectivity/translations.xml
new file mode 100644
index 0000000000..a0e006bb92
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-connectivity/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-connectivity
+ Bluetooth donanımlarına bağlantı sağlar
+ Bluetooth donanımlarına bağlantı sağlar
+
+
+
+ qt5-connectivity-devel
+ qt5-connectivity için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-declarative/actions.py b/desktop/toolkit/qt5/qt5-declarative/actions.py
new file mode 100644
index 0000000000..39257f14c8
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-declarative/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-declarative/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-declarative/pspec.xml b/desktop/toolkit/qt5/qt5-declarative/pspec.xml
new file mode 100644
index 0000000000..59be51eaad
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-declarative/pspec.xml
@@ -0,0 +1,66 @@
+
+
+
+
+ qt5-declarative
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Classes for QML and JavaScript languages
+ Classes for QML and JavaScript languages
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtdeclarative-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ libxkbcommon-devel
+ mesa-devel
+ qt5-xmlpatterns-devel
+
+
+
+
+ qt5-declarative
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/lib/qt5/bin/
+ /usr/bin/
+
+
+ qt5-base
+ mesa
+ qt5-xmlpatterns
+
+
+
+
+ qt5-declarative-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-02
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-declarative/translations.xml b/desktop/toolkit/qt5/qt5-declarative/translations.xml
new file mode 100644
index 0000000000..1b57242749
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-declarative/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-declarative
+ QML ve JavaScript dilleri için sınıflar
+ QML ve JavaScript dilleri için sınıflar
+
+
+
+ qt5-declarative-devel
+ qt5-declarative için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-doc/actions.py b/desktop/toolkit/qt5/qt5-doc/actions.py
new file mode 100644
index 0000000000..0ed55c52bb
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-doc/actions.py
@@ -0,0 +1,22 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+ qt5.make("docs")
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+ qt5.install("install_docs")
diff --git a/desktop/toolkit/qt5/qt5-doc/pspec.xml b/desktop/toolkit/qt5/qt5-doc/pspec.xml
new file mode 100644
index 0000000000..e351e423b7
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-doc/pspec.xml
@@ -0,0 +1,55 @@
+
+
+
+
+ qt5-doc
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ assistant5
+ A cross-platform application and UI framework (Documentation)
+ A cross-platform application and UI framework (Documentation)
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtdoc-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-tools-devel
+
+
+
+
+ qt5-doc
+
+ qt5-base
+ qt5-script
+ qt5-svg
+ qt5-xmlpatterns
+ qt5-tools
+ qt5-declarative
+
+
+ /usr/share/licenses
+ /usr/share/doc/qt5
+
+
+
+
+
+
+ 2015-06-02
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-doc/translations.xml b/desktop/toolkit/qt5/qt5-doc/translations.xml
new file mode 100644
index 0000000000..0474f82041
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-doc/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-doc
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme)
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme)
+
+
diff --git a/desktop/toolkit/qt5/qt5-enginio/actions.py b/desktop/toolkit/qt5/qt5-enginio/actions.py
new file mode 100644
index 0000000000..8560c8fc39
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-enginio/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-enginio/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-enginio/pspec.xml b/desktop/toolkit/qt5/qt5-enginio/pspec.xml
new file mode 100644
index 0000000000..be0de0ac2c
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-enginio/pspec.xml
@@ -0,0 +1,63 @@
+
+
+
+
+ qt5-enginio
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ A Backend-as-a-Service solution to ease the backend development for connected and data-driven application
+ A Backend-as-a-Service solution to ease the backend development for connected and data-driven application
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-enginio
+
+ /usr/lib
+ /usr/lib/qt5/
+ /usr/share/licenses
+ /usr/lib/qt5/bin/
+ /usr/bin/
+
+
+ qt5-base
+ qt5-declarative
+
+
+
+
+ qt5-enginio-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5/
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-enginio/translations.xml b/desktop/toolkit/qt5/qt5-enginio/translations.xml
new file mode 100644
index 0000000000..8d9d97a1b4
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-enginio/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-enginio
+ Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü
+ Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü
+
+
+
+ qt5-enginio-devel
+ qt5-enginio için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-graphicaleffects/actions.py b/desktop/toolkit/qt5/qt5-graphicaleffects/actions.py
new file mode 100644
index 0000000000..91f60b0be5
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-graphicaleffects/actions.py
@@ -0,0 +1,28 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+ qt5.make("docs")
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+ qt5.install("install_docs")
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-graphicaleffects/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml b/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml
new file mode 100644
index 0000000000..3ac16e116d
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml
@@ -0,0 +1,51 @@
+
+
+
+
+ qt5-graphicaleffects
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Graphical effects for use with Qt Quick 2
+ Graphical effects for use with Qt Quick 2
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtgraphicaleffects-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-graphicaleffects
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/share/doc
+
+
+ qt5-base
+ qt5-declarative
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-graphicaleffects/translations.xml b/desktop/toolkit/qt5/qt5-graphicaleffects/translations.xml
new file mode 100644
index 0000000000..39a21da085
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-graphicaleffects/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-graphicaleffects
+ Qt Quick2 ile kullanım için grafiksel efektler
+ Qt Quick2 ile kullanım için grafiksel efektler
+
+
diff --git a/desktop/toolkit/qt5/qt5-imageformats/actions.py b/desktop/toolkit/qt5/qt5-imageformats/actions.py
new file mode 100644
index 0000000000..0e4e8a6537
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-imageformats/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-imageformats/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-imageformats/pspec.xml b/desktop/toolkit/qt5/qt5-imageformats/pspec.xml
new file mode 100644
index 0000000000..78d177dd2c
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-imageformats/pspec.xml
@@ -0,0 +1,54 @@
+
+
+
+
+ qt5-imageformats
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Plugins for additional image formats: TIFF, MNG, TGA, WBMP
+ Plugins for additional image formats: TIFF, MNG, TGA, WBMP
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ jasper-32bit
+ libmng-devel
+
+
+
+
+ qt5-imageformats
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+ libmng
+ tiff
+ webp
+ jasper
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-imageformats/translations.xml b/desktop/toolkit/qt5/qt5-imageformats/translations.xml
new file mode 100644
index 0000000000..18c57a1d38
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-imageformats/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-imageformats
+ İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP
+ İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP
+
+
diff --git a/desktop/toolkit/qt5/qt5-location/actions.py b/desktop/toolkit/qt5/qt5-location/actions.py
new file mode 100644
index 0000000000..aaa39f122e
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-location/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-location/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-location/pspec.xml b/desktop/toolkit/qt5/qt5-location/pspec.xml
new file mode 100644
index 0000000000..48a158ad48
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-location/pspec.xml
@@ -0,0 +1,63 @@
+
+
+
+
+ qt5-location
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides access to position, satellite and area monitoring classes
+ Provides access to position, satellite and area monitoring classes
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtlocation-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-location
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+ geoclue
+ qt5-declarative
+
+
+
+
+ qt5-location-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-location/translations.xml b/desktop/toolkit/qt5/qt5-location/translations.xml
new file mode 100644
index 0000000000..ee4979c5e0
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-location/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-location
+ Konum, uydu ve alan izleme sınıflarına erişim sağlar
+ Konum, uydu ve alan izleme sınıflarına erişim sağlar
+
+
+
+ qt5-location-devel
+ qt5-location için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-multimedia/actions.py b/desktop/toolkit/qt5/qt5-multimedia/actions.py
new file mode 100644
index 0000000000..8f32e80394
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-multimedia/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-multimedia/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-multimedia/pspec.xml b/desktop/toolkit/qt5/qt5-multimedia/pspec.xml
new file mode 100644
index 0000000000..9c4addb975
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-multimedia/pspec.xml
@@ -0,0 +1,73 @@
+
+
+
+
+ qt5-multimedia
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Classes for audio, video, radio and camera functionality
+ Classes for audio, video, radio and camera functionality
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+ pulseaudio-libs-devel
+ gstreamer-devel
+ openal-devel
+ pulseaudio-libs-32bit
+
+
+
+
+ qt5-multimedia
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ mesa
+ openal
+ alsa-lib
+ qt5-base
+ gstreamer
+ pulseaudio-libs
+ qt5-declarative
+ gst-plugins-base
+ gst-plugins-bad
+
+
+
+
+ qt5-multimedia-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-multimedia/translations.xml b/desktop/toolkit/qt5/qt5-multimedia/translations.xml
new file mode 100644
index 0000000000..5f027873fb
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-multimedia/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-multimedia
+ Ses, video, radyo ve kamera işlevsellikleri için sınıflar
+ Ses, video, radyo ve kamera işlevsellikleri için sınıflar
+
+
+
+ qt5-multimedia-devel
+ qt5-multimedia için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-quick1/actions.py b/desktop/toolkit/qt5/qt5-quick1/actions.py
new file mode 100644
index 0000000000..c0d7b99570
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-quick1/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-quic1/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-quick1/pspec.xml b/desktop/toolkit/qt5/qt5-quick1/pspec.xml
new file mode 100644
index 0000000000..fcdac8b481
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-quick1/pspec.xml
@@ -0,0 +1,70 @@
+
+
+
+
+ qt5-quick1
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework.
+ Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices.
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz
+
+ mesa-devel
+ qt5-base-devel
+ qt5-script-devel
+
+
+
+
+ qt5-quick1
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/lib/qt5/bin/
+ /usr/bin
+
+
+ mesa
+ qt5-base
+ qt5-xmlpatterns
+ qt5-script
+ qt5-webkit
+
+
+
+
+ qt5-quick1-devel
+ Development file for qt5-quick1
+ Development file for qt5-quick1
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+ qt5-script-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-quick1/translations.xml b/desktop/toolkit/qt5/qt5-quick1/translations.xml
new file mode 100644
index 0000000000..5a585820ba
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-quick1/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-quick1
+ Qt4 uyumluluğu için Qt Declarative sunar
+ Qt4 uyumluluğu için Qt Declarative sunar
+
+
diff --git a/desktop/toolkit/qt5/qt5-quickcontrols/actions.py b/desktop/toolkit/qt5/qt5-quickcontrols/actions.py
new file mode 100644
index 0000000000..e8dadc9e8b
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-quickcontrols/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-quickcontrols/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml b/desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml
new file mode 100644
index 0000000000..dbf17965d7
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml
@@ -0,0 +1,50 @@
+
+
+
+
+ qt5-quickcontrols
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Reusable Qt Quick based UI controls to create classic desktop-style user interfaces
+ Reusable Qt Quick based UI controls to create classic desktop-style user interfaces
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtquickcontrols-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-quickcontrols
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses/
+
+
+ qt5-base
+ qt5-declarative
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-quickcontrols/translations.xml b/desktop/toolkit/qt5/qt5-quickcontrols/translations.xml
new file mode 100644
index 0000000000..01424843f8
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-quickcontrols/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-quickcontrols
+ Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri
+ Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri
+
+
diff --git a/desktop/toolkit/qt5/qt5-script/actions.py b/desktop/toolkit/qt5/qt5-script/actions.py
new file mode 100644
index 0000000000..fc0c00c8e1
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-script/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-script/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-script/pspec.xml b/desktop/toolkit/qt5/qt5-script/pspec.xml
new file mode 100644
index 0000000000..bebe313f8b
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-script/pspec.xml
@@ -0,0 +1,59 @@
+
+
+
+
+ qt5-script
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Classes for making Qt applications scriptable. Provided for Qt 4.x compatibility
+ Classes for making Qt applications scriptable. Provided for Qt 4.x compatibility
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtscript-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+
+
+
+
+ qt5-script
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+
+
+
+
+ qt5-script-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-script/translations.xml b/desktop/toolkit/qt5/qt5-script/translations.xml
new file mode 100644
index 0000000000..a084fdee97
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-script/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-script
+ Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar
+ Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar.
+
+
+
+ qt5-script-devel
+ qt5-script için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-sensors/actions.py b/desktop/toolkit/qt5/qt5-sensors/actions.py
new file mode 100644
index 0000000000..8cecb133f5
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-sensors/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-sensors/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-sensors/pspec.xml b/desktop/toolkit/qt5/qt5-sensors/pspec.xml
new file mode 100644
index 0000000000..9d1c12604a
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-sensors/pspec.xml
@@ -0,0 +1,61 @@
+
+
+
+
+ qt5-sensors
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides access to sensor hardware and motion gesture recognition
+ Provides access to sensor hardware and motion gesture recognition
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtsensors-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-sensors
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+ qt5-declarative
+
+
+
+
+ qt5-sensors-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-sensors/translations.xml b/desktop/toolkit/qt5/qt5-sensors/translations.xml
new file mode 100644
index 0000000000..c8d793093b
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-sensors/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-sensors
+ Donanım ve hareket algılama sensörüne erişim sağlar
+ Donanım ve hareket algılama sensörüne erişim sağlar
+
+
+
+ qt5-sensors-devel
+ qt5-sensors için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-serialport/actions.py b/desktop/toolkit/qt5/qt5-serialport/actions.py
new file mode 100644
index 0000000000..bb1ba3d773
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-serialport/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-serialport/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-serialport/pspec.xml b/desktop/toolkit/qt5/qt5-serialport/pspec.xml
new file mode 100644
index 0000000000..2dee32317d
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-serialport/pspec.xml
@@ -0,0 +1,60 @@
+
+
+
+
+ qt5-serialport
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides access to hardware and virtual serial ports
+ Provides access to hardware and virtual serial ports
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtserialport-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-tools-devel
+
+
+
+
+ qt5-serialport
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+
+
+
+
+ qt5-serialport-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-serialport/translations.xml b/desktop/toolkit/qt5/qt5-serialport/translations.xml
new file mode 100644
index 0000000000..89f2f4d536
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-serialport/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-serialport
+ Donanım ve sanal seri portlara erişim sağlar
+ Donanım ve sanal seri portlara erişim sağlar
+
+
+
+ qt5-serialport-devel
+ qt5-serialport için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-svg/actions.py b/desktop/toolkit/qt5/qt5-svg/actions.py
new file mode 100644
index 0000000000..96ad00c0f1
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-svg/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-svg/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-svg/pspec.xml b/desktop/toolkit/qt5/qt5-svg/pspec.xml
new file mode 100644
index 0000000000..a11a0fff0a
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-svg/pspec.xml
@@ -0,0 +1,60 @@
+
+
+
+
+ qt5-svg
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Classes for displaying the contents of SVG files
+ Classes for displaying the contents of SVG files
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtsvg-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+
+
+
+
+ qt5-svg
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses/
+
+
+ mesa
+ qt5-base
+
+
+
+
+ qt5-svg-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5/
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-svg/translations.xml b/desktop/toolkit/qt5/qt5-svg/translations.xml
new file mode 100644
index 0000000000..b9f7411238
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-svg/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-svg
+ SVG dosyalarının içeriğini görüntüleme için sınıflar
+ SVG dosyalarının içeriğini görüntüleme için sınıflar
+
+
+
+ qt5-svg-devel
+ qt5-svg için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-tools/actions.py b/desktop/toolkit/qt5/qt5-tools/actions.py
new file mode 100644
index 0000000000..fc4a145dae
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/actions.py
@@ -0,0 +1,28 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+ qt5.make("docs")
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+ qt5.install("install_docs")
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-tools/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-tools/files/assistant.desktop b/desktop/toolkit/qt5/qt5-tools/files/assistant.desktop
new file mode 100755
index 0000000000..8b6b8ab3ae
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/files/assistant.desktop
@@ -0,0 +1,137 @@
+#!/usr/bin/env xdg-open
+[Desktop Entry]
+Encoding=UTF-8
+Exec=assistant-qt5
+Name=Qt5 Assistant
+Name[af]=Qt5 Assistent
+Name[ar]=معاون Qt5
+Name[az]=Qt5 Yardımçısı
+Name[bn]=কিউ-টি সহায়ক
+Name[br]=Skoazeller Qt5
+Name[bs]=Qt5 Asistent
+Name[ca]=Assistent Qt5
+Name[cs]=Qt5 asistent
+Name[cy]=Cymhorthwr Qt5
+Name[de]=Qt5-Assistent
+Name[el]=Βοηθός Qt5
+Name[eo]=Qt5-Asistilo
+Name[es]=Asistente Qt5
+Name[eu]=Qt5 laguntzailea
+Name[fa]=دستیار Qt5
+Name[fo]=Qt5-hjálpari
+Name[fy]=Qt5-assistent
+Name[hi]=क्यूटी सहायक
+Name[hr]=Qt5 Asistent
+Name[hsb]=Qt5 Asistent
+Name[ja]=Qt5 アシスタント
+Name[km]=អ្នកជំនួយការ Qt5
+Name[ko]=Qt5 도우미
+Name[lo]=ຄຳແນະນຳການໃ້ຊ້Qt5
+Name[lv]=Qt5 Asistents
+Name[mk]=Qt5-Асистент
+Name[mn]=Qt5-туслагч
+Name[ms]=Pembantu Qt5
+Name[nds]=Qt5-Hölper
+Name[nl]=Qt5 Assistent
+Name[nso]=Mothusi wa Qt5
+Name[pa]=Qt5 ਸਹਾਇਕ
+Name[pt]=Assistente do Qt5
+Name[pt_BR]=Assistente Qt5
+Name[ro]=Asistent Qt5
+Name[ru]=Помощник Qt5
+Name[rw]=Umufasha Qt5
+Name[sl]=Pomočnik za Qt5
+Name[ss]=Lisekela leQt5
+Name[ta]=Qt5 துணைவன்
+Name[tg]=Дастёри Qt5
+Name[th]=คำแนะนำการใช้ Qt5
+Name[tr]=Qt5 Asistanı
+Name[uk]=Qt5-асистент
+Name[uz]=Qt53 ёрдамчи
+Name[ven]=Qt5 Muthusi
+Name[vi]=Trợ giúp Qt5
+Name[wa]=Macrea Qt5
+Name[xh]=Qt5 Umncedi
+Name[zh_CN]=Qt5 助手
+Name[zh_TW]=Qt5 助理
+Name[zu]=Umsizi we-Qt5
+GenericName=Document Browser
+GenericName[af]=Dokument Blaaier
+GenericName[ar]=متصفح المستندات
+GenericName[az]=Sənəd Səyyahı
+GenericName[bg]=Преглед на документи
+GenericName[bn]=নথী ব্রাউজার
+GenericName[br]=Furcher Teulioù
+GenericName[bs]=Preglednik QT dokumenata
+GenericName[ca]=Navegador de documents
+GenericName[cs]=Prohlížeč dokumentace
+GenericName[cy]=Porydd Dogfen
+GenericName[da]=Dokumentfremviser
+GenericName[de]=Dokumentbrowser
+GenericName[el]=Προβολέας εγγράφων
+GenericName[eo]=Dokumentorigardilo
+GenericName[es]=Navegador de documentos
+GenericName[et]=Dokumentatsiooni brauser
+GenericName[eu]=Dokumentu arakatzailea
+GenericName[fa]=مرورگر سند
+GenericName[fi]=Asiakirjaselain
+GenericName[fo]=Skjalakagari
+GenericName[fr]=Explorateur de documentation Qt5
+GenericName[fy]=Dokumintblêder
+GenericName[ga]=Brabhsálaí Cáipéise
+GenericName[gl]=Navegador de Documentos
+GenericName[he]=דפדפן מסמכים
+GenericName[hi]=दस्तावेज़ ब्राउज़रज़र
+GenericName[hr]=Preglednik dokumenata
+GenericName[hu]=Dokumentumböngésző
+GenericName[id]=Peselancar Document
+GenericName[is]=Skjalavafri
+GenericName[it]=Visualizzatore di documenti
+GenericName[ja]=ドキュメントブラウザ
+GenericName[km]=កម្មវិធីរុករកឯកសារ
+GenericName[ko]=문서 탐색기
+GenericName[lo]=ເຄື່ອງມືເລືອກເບິ່ງແຟ້ມເອກະສານ
+GenericName[lt]=Dokumentų naršyklė
+GenericName[lv]=Dokumentu Pārlūks
+GenericName[mk]=Прелистувач на документи
+GenericName[mn]=Баримтын хөтөч
+GenericName[ms]=Pelungsur Dokumen
+GenericName[mt]=Browser ta' Dokumenti
+GenericName[nb]=Dokumentleser
+GenericName[nds]=Dokmentkieker
+GenericName[nl]=Documentbrowser
+GenericName[nn]=Dokumentlesar
+GenericName[nso]=Seinyakisi sa Tokomane
+GenericName[pa]=ਦਸਤਾਵੇਜ਼ ਝਲਕਾਰਾ
+GenericName[pl]=Przeglądarka dokumentów
+GenericName[pt]=Navegador de Documentos
+GenericName[pt_BR]=Navegador de Documentos
+GenericName[ro]=Navigator de documente
+GenericName[ru]=Программа просмотра документов
+GenericName[rw]=Mucukumbuzi w'Inyandiko
+GenericName[se]=Dokumeantalogan
+GenericName[sk]=Prehliadač dokumentácie
+GenericName[sl]=Pregledovalnik dokumentov
+GenericName[sr]=Прегледач докумената
+GenericName[sr@Latn]=Pregledač dokumenata
+GenericName[ss]=Ibrawuza yelidokhumente
+GenericName[sv]=Dokumentbläddrare
+GenericName[ta]=ஆவண உலாவி
+GenericName[tg]=Тафсири ҳуҷҷат
+GenericName[th]=เครื่องมือเลือกดูแฟ้มเอกสาร
+GenericName[tr]=Belge Tarayıcısı
+GenericName[tt]=İstälek Küzätüçe
+GenericName[uk]=Навігатор документів
+GenericName[uz]=Ҳужжат браузери
+GenericName[ven]=Buronza ya manwalwa
+GenericName[vi]=Trình duyệt tài liệu
+GenericName[wa]=Foyteu di documints
+GenericName[xh]=Umkhangeli Wencwadi Zoxwebhu
+GenericName[zh_CN]=文档浏览器
+GenericName[zh_TW]=文件閱讀器
+GenericName[zu]=Umcingi Woshicilelo
+X-KDE-StartupNotify=true
+Icon=assistant5
+Terminal=false
+Type=Application
+Categories=Qt;Development;
diff --git a/desktop/toolkit/qt5/qt5-tools/files/assistant.png b/desktop/toolkit/qt5/qt5-tools/files/assistant.png
new file mode 100644
index 0000000000..bfb642dc2d
Binary files /dev/null and b/desktop/toolkit/qt5/qt5-tools/files/assistant.png differ
diff --git a/desktop/toolkit/qt5/qt5-tools/files/assistant_tr.qm b/desktop/toolkit/qt5/qt5-tools/files/assistant_tr.qm
new file mode 100644
index 0000000000..47b339b31e
Binary files /dev/null and b/desktop/toolkit/qt5/qt5-tools/files/assistant_tr.qm differ
diff --git a/desktop/toolkit/qt5/qt5-tools/files/designer.desktop b/desktop/toolkit/qt5/qt5-tools/files/designer.desktop
new file mode 100644
index 0000000000..2366367a36
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/files/designer.desktop
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Name=Qt5 Designer
+Name[tr]=Qt5 Tasarımcı
+GenericName=Interface Designer
+Comment=Design GUIs for Qt applications
+Exec=designer-qt5
+Icon=designer5
+MimeType=application/x-designer;
+Terminal=false
+Type=Application
+Categories=Qt;Development;
+
diff --git a/desktop/toolkit/qt5/qt5-tools/files/designer.png b/desktop/toolkit/qt5/qt5-tools/files/designer.png
new file mode 100644
index 0000000000..5ebc4a9729
Binary files /dev/null and b/desktop/toolkit/qt5/qt5-tools/files/designer.png differ
diff --git a/desktop/toolkit/qt5/qt5-tools/files/designer_tr.qm b/desktop/toolkit/qt5/qt5-tools/files/designer_tr.qm
new file mode 100644
index 0000000000..05c33f03b5
Binary files /dev/null and b/desktop/toolkit/qt5/qt5-tools/files/designer_tr.qm differ
diff --git a/desktop/toolkit/qt5/qt5-tools/files/linguist.desktop b/desktop/toolkit/qt5/qt5-tools/files/linguist.desktop
new file mode 100644
index 0000000000..8fa33d1168
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/files/linguist.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Qt5 Linguist
+Name[tr]=Qt5 Dilci
+GenericName=Translation tool
+Comment=Add translations to Qt5 applications
+Exec=linguist-qt5
+Icon=linguist5
+MimeType=text/vnd.trolltech.linguist;application/x-linguist;
+Terminal=false
+Type=Application
+Categories=Qt;Development;
diff --git a/desktop/toolkit/qt5/qt5-tools/files/linguist.png b/desktop/toolkit/qt5/qt5-tools/files/linguist.png
new file mode 100644
index 0000000000..47c9f17a4f
Binary files /dev/null and b/desktop/toolkit/qt5/qt5-tools/files/linguist.png differ
diff --git a/desktop/toolkit/qt5/qt5-tools/files/linguist_tr.qm b/desktop/toolkit/qt5/qt5-tools/files/linguist_tr.qm
new file mode 100644
index 0000000000..b27f613829
Binary files /dev/null and b/desktop/toolkit/qt5/qt5-tools/files/linguist_tr.qm differ
diff --git a/desktop/toolkit/qt5/qt5-tools/files/qdbusviewer.desktop b/desktop/toolkit/qt5/qt5-tools/files/qdbusviewer.desktop
new file mode 100644
index 0000000000..25f5848a17
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/files/qdbusviewer.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Qt5 QDbusViewer
+GenericName=D-Bus Debugger
+Comment=Debug D-Bus applications
+Exec=qdbusviewer-qt5
+Icon=qdbusviewer5
+Terminal=false
+Type=Application
+Categories=Qt;Development;Debugger;
diff --git a/desktop/toolkit/qt5/qt5-tools/pspec.xml b/desktop/toolkit/qt5/qt5-tools/pspec.xml
new file mode 100644
index 0000000000..a2bb0d9d97
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/pspec.xml
@@ -0,0 +1,83 @@
+
+
+
+
+ qt5-tools
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ A cross-platform application and UI framework (Development Tools, QtHelp)
+ A cross-platform application and UI framework (Development Tools, QtHelp)
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qttools-opensource-src-5.4.2.tar.xz
+
+ mesa-devel
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-tools
+
+ qt5-base
+ mesa
+ qt5-webkit
+ qt5-declarative
+
+
+ /usr/lib
+ /usr/share/licenses/
+ /usr/share/qt5/
+ /usr/share/applications
+ /usr/lib/qt5
+ /usr/share/pixmaps/
+ /usr/lib/qt5/bin/
+ /usr/bin
+ /usr/share/doc
+
+
+ qdbusviewer.desktop
+ linguist.desktop
+ designer.desktop
+ assistant_tr.qm
+ designer_tr.qm
+ linguist_tr.qm
+ assistant.desktop
+ assistant.png
+ assistant.png
+ linguist.png
+ designer.png
+
+
+
+
+ qt5-tools-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-tools/translations.xml b/desktop/toolkit/qt5/qt5-tools/translations.xml
new file mode 100644
index 0000000000..fc4319ba30
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-tools/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-tools
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım).
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım).
+
+
+
+ qt5-tools-devel
+ qt5-tools için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-translations/actions.py b/desktop/toolkit/qt5/qt5-translations/actions.py
new file mode 100644
index 0000000000..e772fb3b6e
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-translations/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-translations/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-translations/pspec.xml b/desktop/toolkit/qt5/qt5-translations/pspec.xml
new file mode 100644
index 0000000000..ae7ba6c111
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-translations/pspec.xml
@@ -0,0 +1,47 @@
+
+
+
+
+ qt5-translations
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ A cross-platform application and UI framework (Translations)
+ A cross-platform application and UI framework (Translations)
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qttranslations-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+
+
+
+
+ qt5-translations
+
+ /usr/share/qt5
+ /usr/share/licenses/
+
+
+ qt5-base
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-translations/translations.xml b/desktop/toolkit/qt5/qt5-translations/translations.xml
new file mode 100644
index 0000000000..bfb3a04e50
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-translations/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-translations
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler)
+ Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler)
+
+
diff --git a/desktop/toolkit/qt5/qt5-wayland/actions.py b/desktop/toolkit/qt5/qt5-wayland/actions.py
new file mode 100644
index 0000000000..993576f48f
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-wayland/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-wayland/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-wayland/pspec.xml b/desktop/toolkit/qt5/qt5-wayland/pspec.xml
new file mode 100644
index 0000000000..d884626845
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-wayland/pspec.xml
@@ -0,0 +1,85 @@
+
+
+
+
+ qt5-wayland
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides APIs for Wayland
+ Provides APIs for Wayland
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwayland-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+ libxkbcommon-devel
+ xorg-server-xwayland
+ glib2-devel
+ libX11-devel
+ libgcc
+ mesa-devel
+ fontconfig-devel
+ freetype-devel
+ libXrender-devel
+ libudev-devel
+ libXcomposite-devel
+ libxkbcommon-devel
+ wayland-client
+ wayland-cursor
+
+
+
+
+ qt5-wayland
+
+ mesa
+ qt5-base
+ fontconfig
+ libXrender
+ libxkbcommon
+ libXcomposite
+ libXcomposite
+ wayland-client
+ wayland-cursor
+
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/lib/qt5/bin
+ /usr/bin
+
+
+
+
+ qt5-wayland-devel
+
+ qt5-base-devel
+
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-wayland/translations.xml b/desktop/toolkit/qt5/qt5-wayland/translations.xml
new file mode 100644
index 0000000000..657aeb9046
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-wayland/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-wayland
+ Wayland için API'ler sağlar
+ Wayland için API'ler sağlar
+
+
+
+ qt5-wayland-devel
+ qt5-wayland için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-webchannel/actions.py b/desktop/toolkit/qt5/qt5-webchannel/actions.py
new file mode 100644
index 0000000000..e65215daa5
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webchannel/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-webchannel/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-webchannel/pspec.xml b/desktop/toolkit/qt5/qt5-webchannel/pspec.xml
new file mode 100644
index 0000000000..fb70bc4b0a
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webchannel/pspec.xml
@@ -0,0 +1,61 @@
+
+
+
+
+ qt5-webchannel
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients
+ Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebchannel-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-webchannel
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+ qt5-declarative
+
+
+
+
+ qt5-webchannel-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-webchannel/translations.xml b/desktop/toolkit/qt5/qt5-webchannel/translations.xml
new file mode 100644
index 0000000000..43e7abc1d2
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webchannel/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-webchannel
+ HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar
+ HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar
+
+
+
+ qt5-webchannel-devel
+ qt5-webchannel için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-webengine/actions.py b/desktop/toolkit/qt5/qt5-webengine/actions.py
new file mode 100644
index 0000000000..6fa6e87ee9
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webengine/actions.py
@@ -0,0 +1,30 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ shelltools.export("QT5LINK", "/usr/lib/qt5/bin")
+ shelltools.export("QT5DIR", "/usr/lib/qt5")
+ shelltools.export("CFLAGS", "%s -I/usr/lib/sqlite3.8.8.3" % get.CFLAGS())
+ qt5.configure()
+
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.dodoc("LICENSE.LGPLv3")
diff --git a/desktop/toolkit/qt5/qt5-webengine/pspec.xml b/desktop/toolkit/qt5/qt5-webengine/pspec.xml
new file mode 100644
index 0000000000..ba98ed7e07
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webengine/pspec.xml
@@ -0,0 +1,135 @@
+
+
+
+
+ qt5-webengine
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides support for web applications using the Chromium browser project
+ Provides support for web applications using the Chromium browser project
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebengine-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+ nss-devel
+ dbus-devel
+ nspr-devel
+ expat-devel
+ glib2-devel
+ libX11-devel
+ libcap-devel
+ libgcc
+ freetype-devel
+ libXtst-devel
+ libXcursor-devel
+ libXrandr-devel
+ alsa-lib-devel
+ libXcomposite-devel
+ sqlite-devel
+ at-spi2-core-devel
+ ruby
+ gperf
+ bluez-libs-devel
+ cups-devel
+ desktop-file-utils
+ fontconfig-devel
+ gst-plugins-base-devel
+ gstreamer-devel
+ gtk2-devel
+ harfbuzz-devel
+ icon-theme-hicolor
+ firebird-superserver
+ libjpeg-turbo-devel
+ mariadb-lib
+ libmng-devel
+ pulseaudio-libs-devel
+ libxcb-devel
+ libxkbcommon-devel
+ libxslt-devel
+ mesa-devel
+ libmtdev-devel
+ openal-devel
+ postgresql-server
+ pciutils-devel
+ python-devel
+ unixODBC-devel
+ xcb-proto
+ xcb-util-devel
+ xcb-util-image-devel
+ xcb-util-keysyms-devel
+ xcb-util-wm-devel
+
+
+
+
+ qt5-webengine
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/qt5/translations
+ /usr/share/qt5
+ /usr/share/doc
+ /usr/lib/qt5/bin/
+ /usr/bin
+
+
+ nss
+ dbus
+ nspr
+ expat
+ glib2
+ libX11
+ libcap
+ libgcc
+ freetype
+ mesa
+ libXi
+ libXext
+ libXtst
+ qt5-base
+ alsa-lib
+ harfbuzz
+ libXfixes
+ libXrandr
+ fontconfig
+ libXcursor
+ libXdamage
+ libXrender
+ libXcomposite
+ qt5-declarative
+
+
+
+
+ qt5-webengine-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-28
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-webengine/translations.xml b/desktop/toolkit/qt5/qt5-webengine/translations.xml
new file mode 100644
index 0000000000..680b4ac782
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webengine/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ qt5-webengine
+ Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar
+ Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar
+
+
diff --git a/desktop/toolkit/qt5/qt5-webkit/actions.py b/desktop/toolkit/qt5/qt5-webkit/actions.py
new file mode 100644
index 0000000000..1e9efad8fb
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webkit/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.dodoc("LICENSE.GPLv2", "LICENSE.LGPLv3", "LICENSE.LGPLv21", "ChangeLog-2012-05-22")
\ No newline at end of file
diff --git a/desktop/toolkit/qt5/qt5-webkit/pspec.xml b/desktop/toolkit/qt5/qt5-webkit/pspec.xml
new file mode 100644
index 0000000000..5b44bf2bcf
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webkit/pspec.xml
@@ -0,0 +1,116 @@
+
+
+
+
+ qt5-webkit
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Classes for a WebKit2 based implementation and a new QML API
+ Classes for a WebKit2 based implementation and a new QML API
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebkit-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-sensors-devel
+ qt5-location-devel
+ qt5-declarative-devel
+ libXtst-devel
+ gst-plugins-base-devel
+ libXcomposite-devel
+ icu4c-devel
+ libjpeg-turbo-devel
+ fontconfig-devel
+ glib2-devel
+ dbus-devel
+ ruby-devel
+ gstreamer-devel
+ libpng-devel
+ libpcre-devel
+ libudev-devel
+ webp-devel
+ zlib-devel
+ libxslt-devel
+ libXcomposite-devel
+ libX11-devel
+ libgcc
+ libXrender-devel
+ sqlite-devel
+ perl-Digest-MD5
+ perl-Text-ParseWords
+ gperf
+ bison
+ flex
+ phonon-devel
+
+
+
+
+
+
+
+
+ qt5-webkit
+
+ /usr/lib
+ /usr/lib/qt5/plugins
+ /usr/lib/qt5/
+ /usr/lib/qt5/bin/
+ /usr/bin
+ /usr/share/doc
+
+
+ qt5-base
+ mesa
+ webp
+ zlib
+ glib2
+ icu4c
+ libX11
+ libgcc
+ libpng
+ sqlite
+ libxml2
+ libxslt
+ libXrender
+ qt5-sensors
+ qt5-location
+ libXcomposite
+ libjpeg-turbo
+ gstreamer-next
+ qt5-webchannel
+ qt5-declarative
+ gst-plugins-base-next
+
+
+
+
+ qt5-webkit-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5/
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-webkit/translations.xml b/desktop/toolkit/qt5/qt5-webkit/translations.xml
new file mode 100644
index 0000000000..8ca7102867
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-webkit/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-webkit
+ WebKit2 tabanlı uygulama ve yeni QML API için sınıflar
+ WebKit2 tabanlı uygulama ve yeni QML API için sınıflar
+
+
+
+ qt5-webkit-devel
+ qt5-webkit için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-websockets/actions.py b/desktop/toolkit/qt5/qt5-websockets/actions.py
new file mode 100644
index 0000000000..4b617ba3eb
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-websockets/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ #pisitools.insinto("/usr/share/licenses/qt5-websockets/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-websockets/pspec.xml b/desktop/toolkit/qt5/qt5-websockets/pspec.xml
new file mode 100644
index 0000000000..c9b64aa156
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-websockets/pspec.xml
@@ -0,0 +1,60 @@
+
+
+
+
+ qt5-websockets
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides WebSocket communication compliant with RFC 6455
+ Provides WebSocket communication compliant with RFC 6455
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebsockets-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+ qt5-declarative-devel
+
+
+
+
+ qt5-websockets
+
+ /usr/lib
+ /usr/lib/qt5
+
+
+ qt5-base
+ qt5-declarative
+
+
+
+
+ qt5-websockets-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-websockets/translations.xml b/desktop/toolkit/qt5/qt5-websockets/translations.xml
new file mode 100644
index 0000000000..6bb86b48b4
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-websockets/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-websockets
+ RFC 6455 ile yumuşak WebSocket iletişimi sağlar
+ RFC 6455 ile yumuşak WebSocket iletişimi sağlar
+
+
+
+ qt5-websockets-devel
+ qt5-websockets için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-x11extras/actions.py b/desktop/toolkit/qt5/qt5-x11extras/actions.py
new file mode 100644
index 0000000000..49629ad6d8
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-x11extras/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-x11extras/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-x11extras/pspec.xml b/desktop/toolkit/qt5/qt5-x11extras/pspec.xml
new file mode 100644
index 0000000000..3503dc4da4
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-x11extras/pspec.xml
@@ -0,0 +1,59 @@
+
+
+
+
+ qt5-x11extras
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Provides platform-specific APIs for X11
+ Provides platform-specific APIs for X11
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+
+
+
+
+ qt5-x11extras
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
+
+ qt5-base
+
+
+
+
+ qt5-x11extras-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5/
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-x11extras/translations.xml b/desktop/toolkit/qt5/qt5-x11extras/translations.xml
new file mode 100644
index 0000000000..d1c6dea590
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-x11extras/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-x11extras
+ X11 için platforma özgü API'ler sağlar
+ X11 için platforma özgü API'ler sağlar
+
+
+
+ qt5-x11extras-devel
+ qt5-x11extras için geliştirme dosyaları
+
+
diff --git a/desktop/toolkit/qt5/qt5-xmlpatterns/actions.py b/desktop/toolkit/qt5/qt5-xmlpatterns/actions.py
new file mode 100644
index 0000000000..5f567ecc13
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-xmlpatterns/actions.py
@@ -0,0 +1,26 @@
+#!/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 shelltools
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import qt5
+from pisi.actionsapi import get
+
+def setup():
+ qt5.configure()
+
+def build():
+ qt5.make()
+
+def install():
+ qt5.install("INSTALL_ROOT=%s" % get.installDIR())
+
+ #I hope qtchooser will manage this issue
+ for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
+ pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
+
+ pisitools.insinto("/usr/share/licenses/qt5-xmlpatterns/", "LGPL_EXCEPTION.txt")
diff --git a/desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml b/desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml
new file mode 100644
index 0000000000..f36dfec6d2
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml
@@ -0,0 +1,61 @@
+
+
+
+
+ qt5-xmlpatterns
+ http://qt.digia.com/
+
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+ Support for XPath, XQuery, XSLT and XML schema validation
+ Support for XPath, XQuery, XSLT and XML schema validation
+ LGPLv2.1-linking-exception
+ http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtxmlpatterns-opensource-src-5.4.2.tar.xz
+
+ qt5-base-devel
+
+
+
+
+ qt5-xmlpatterns
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+ /usr/lib/qt5/bin/
+ /usr/bin
+
+
+ qt5-base
+
+
+
+
+ qt5-xmlpatterns-devel
+
+ /usr/lib/pkgconfig
+ /usr/include/qt5
+
+
+ qt5-base-devel
+
+
+
+
+
+ 2015-06-03
+ 5.4.2
+ Version bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2015-05-09
+ 5.4.1
+ First release
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/qt5/qt5-xmlpatterns/translations.xml b/desktop/toolkit/qt5/qt5-xmlpatterns/translations.xml
new file mode 100644
index 0000000000..ab827b97b9
--- /dev/null
+++ b/desktop/toolkit/qt5/qt5-xmlpatterns/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ qt5-xmlpatterns
+ XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar
+ XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar
+
+
+
+ qt5-xmlpatterns-devel
+ qt5-xmlpatterns için geliştirme dosyaları
+
+