diff --git a/desktop/gnome/base/component.xml b/desktop/gnome/base/component.xml
new file mode 100644
index 0000000000..be92ed3ab9
--- /dev/null
+++ b/desktop/gnome/base/component.xml
@@ -0,0 +1,3 @@
+
+ desktop.gnome.base
+
diff --git a/desktop/gnome/base/dconf/actions.py b/desktop/gnome/base/dconf/actions.py
new file mode 100644
index 0000000000..c8d97d3a6a
--- /dev/null
+++ b/desktop/gnome/base/dconf/actions.py
@@ -0,0 +1,21 @@
+#!/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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure("--disable-static")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("COPYING", "NEWS")
+
diff --git a/desktop/gnome/base/dconf/pspec.xml b/desktop/gnome/base/dconf/pspec.xml
new file mode 100644
index 0000000000..088156668b
--- /dev/null
+++ b/desktop/gnome/base/dconf/pspec.xml
@@ -0,0 +1,96 @@
+
+
+
+
+ dconf
+ http://live.gnome.org/dconf
+
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+ GPLv2
+ app:console
+ Simple low-level configuration system
+ dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems.
+ http://ftp.gnome.org/pub/gnome/sources/dconf/0.20/dconf-0.20.0.tar.xz
+
+ dbus-devel
+ glib2-devel
+ libxml2-devel
+ gtk3-devel
+ pango-devel
+
+
+
+
+ dconf
+
+ gtk3
+ pango
+
+
+ /etc
+ /usr/share
+ /usr/lib
+ /usr/share/doc
+ /usr/bin
+ /usr/libexec
+
+
+
+
+ dconf-devel
+ Development files for dconf
+
+ dconf
+
+
+ /usr/include
+ /usr/share/vala
+ /usr/lib/pkgconfig
+
+
+
+
+ dconf-docs
+ data:doc
+ Reference files for dconf
+
+ dconf
+
+
+ /usr/share/gtk-doc
+
+
+
+
+
+ 2014-06-14
+ 0.20
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2013-10-29
+ 0.18
+ Version bump.
+ Richard de Bruin
+ richdb@pisilinux.org
+
+
+ 2013-07-31
+ 0.16.1
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2012-11-21
+ 0.15.2
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/desktop/gnome/base/dconf/translations.xml b/desktop/gnome/base/dconf/translations.xml
new file mode 100644
index 0000000000..57eca86d64
--- /dev/null
+++ b/desktop/gnome/base/dconf/translations.xml
@@ -0,0 +1,9 @@
+
+
+
+ dconf
+ Düşük seviyeli yapılandırma sistemi
+ FIXME
+
+
+
diff --git a/desktop/gnome/component.xml b/desktop/gnome/component.xml
new file mode 100644
index 0000000000..679894d717
--- /dev/null
+++ b/desktop/gnome/component.xml
@@ -0,0 +1,3 @@
+
+ desktop.gnome
+
diff --git a/desktop/toolkit/gtk/gtk3/actions.py b/desktop/toolkit/gtk/gtk3/actions.py
new file mode 100644
index 0000000000..90763b9448
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/actions.py
@@ -0,0 +1,61 @@
+#!/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 get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+
+def setup():
+ options = "--enable-x11-backend \
+ --enable-xinerama \
+ --enable-xkb \
+ --disable-silent-rules \
+ --disable-schemas-compile \
+ --enable-introspection \
+ --enable-gtk2-dependency \
+ --disable-papi \
+ --disable-wayland-backend \
+ "
+
+ shelltools.export("CFLAGS", get.CFLAGS().replace("-fomit-frame-pointer",""))
+
+ if get.buildTYPE() == "_emul32":
+ options += " --libdir=/usr/lib32 \
+ --bindir=/_emul32/bin \
+ --sbindir=/_emul32/sbin \
+ --enable-colord=no \
+ "
+
+ shelltools.export("CC", "%s -m32" % get.CC())
+ shelltools.export("CXX", "%s -m32" % get.CC())
+ shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS().replace("-fomit-frame-pointer",""))
+ shelltools.export("CXXFLAGS", "%s -m32" % get.CFLAGS())
+ shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
+ shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
+
+ pisitools.dosed("configure.ac", "cups-config", "cups-config-32bit")
+
+ autotools.autoreconf("-fiv")
+ autotools.configure(options)
+
+ pisitools.dosed("libtool", "( -shared )", r" -Wl,-O1,--as-needed\1")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ # remove empty dir
+ pisitools.removeDir("/usr/share/man")
+ pisitools.dodoc("AUTHORS", "README*", "HACKING", "ChangeLog*", "NEWS*")
+
+ if get.buildTYPE() == "_emul32":
+ for binaries in ["gtk-query-immodules-3.0"]:
+ pisitools.domove("/_emul32/bin/%s" % binaries, "/usr/bin/", "%s-32bit" % binaries)
+ pisitools.removeDir("/_emul32")
diff --git a/desktop/toolkit/gtk/gtk3/comar/pakhandler.py b/desktop/toolkit/gtk/gtk3/comar/pakhandler.py
new file mode 100644
index 0000000000..c902fa4b79
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/comar/pakhandler.py
@@ -0,0 +1,41 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+import piksemel
+import os
+import fnmatch
+
+def updateData(filepath):
+ parse = piksemel.parse(filepath)
+
+ iconFound = False
+ immoduleFound = False
+
+ for icon in parse.tags("File"):
+ path = icon.getTagData("Path")
+ if path.startswith("usr/share/icons/hicolor") and not iconFound:
+ os.system("/usr/bin/gtk-update-icon-cache -f /usr/share/icons/hicolor")
+ iconFound = True
+ if immoduleFound:
+ return
+
+ if fnmatch.fnmatch(path, "usr/lib/gtk-3.0/*immodules/*.so") and not immoduleFound:
+ os.system("/usr/bin/gtk-query-immodules-3.0 --update-cache")
+ immoduleFound = True
+ if iconFound:
+ return
+
+ if fnmatch.fnmatch(path, "usr/lib32/gtk-3.0/*immodules/*.so") and not immoduleFound:
+ os.system("/usr/bin/gtk-query-immodules-3.0-32bit --update-cache")
+ immoduleFound = True
+ if iconFound:
+ return
+
+def setupPackage(metapath, filepath):
+ updateData(filepath)
+
+def cleanupPackage(metapath, filepath):
+ pass
+
+def postCleanupPackage(metapath, filepath):
+ updateData(filepath)
diff --git a/desktop/toolkit/gtk/gtk3/files/071_fix-installation-of-HTML-images.patch b/desktop/toolkit/gtk/gtk3/files/071_fix-installation-of-HTML-images.patch
new file mode 100644
index 0000000000..cf79ca77f5
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/files/071_fix-installation-of-HTML-images.patch
@@ -0,0 +1,28 @@
+From 4c220ef6650afeba334570ad00db0a95c9ba38e6 Mon Sep 17 00:00:00 2001
+From: Michael Biebl
+Date: Tue, 17 Apr 2012 13:29:09 +0200
+Subject: [PATCH] Fix installation of HTML images for absolute paths
+
+when using out-of-tree builds.
+
+Bug: https://bugzilla.gnome.org/show_bug.cgi?id=674163
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656803
+---
+ gtk-doc.make | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+Index: gtk+-3.6.4/gtk-doc.make
+===================================================================
+--- gtk+-3.6.4.orig/gtk-doc.make 2013-01-10 16:03:56.697595578 +1300
++++ gtk+-3.6.4/gtk-doc.make 2013-01-10 16:03:56.693595578 +1300
+@@ -173,8 +173,8 @@
+ if test -f $(abs_srcdir)/$$file ; then \
+ cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
+ fi; \
+- if test -f $(abs_builddir)/$$file ; then \
+- cp $(abs_builddir)/$$file $(abs_builddir)/html; \
++ if test -f $$file ; then \
++ cp $$file $(abs_builddir)/html; \
+ fi; \
+ done;
+ $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
diff --git a/desktop/toolkit/gtk/gtk3/files/073_treeview_almost_fixed.patch b/desktop/toolkit/gtk/gtk3/files/073_treeview_almost_fixed.patch
new file mode 100644
index 0000000000..6a892b3d6d
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/files/073_treeview_almost_fixed.patch
@@ -0,0 +1,76 @@
+Description: "ubuntu-almost-fixed-height" private property to speed-up software-center
+Bug: https://bugzilla.gnome.org/607447
+Bug-Ubuntu: https://launchpad.net/bugs/514879
+
+=== modified file 'gtk/gtktreeview.c'
+Index: gtk+-3.6.4/gtk/gtktreeview.c
+===================================================================
+--- gtk+-3.6.4.orig/gtk/gtktreeview.c 2013-01-10 16:03:58.421595565 +1300
++++ gtk+-3.6.4/gtk/gtktreeview.c 2013-01-10 16:03:58.417595565 +1300
+@@ -462,6 +462,7 @@
+
+ guint fixed_height_mode : 1;
+ guint fixed_height_check : 1;
++ guint ubuntu_almost_fixed_height_mode : 1;
+
+ guint reorderable : 1;
+ guint header_has_focus : 1;
+@@ -552,6 +553,7 @@
+ PROP_ENABLE_SEARCH,
+ PROP_SEARCH_COLUMN,
+ PROP_FIXED_HEIGHT_MODE,
++ PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE,
+ PROP_HOVER_SELECTION,
+ PROP_HOVER_EXPAND,
+ PROP_SHOW_EXPANDERS,
+@@ -1075,6 +1077,15 @@
+ P_("Speeds up GtkTreeView by assuming that all rows have the same height"),
+ FALSE,
+ GTK_PARAM_READWRITE));
++
++ /* Private ubuntu extension to fix bugzilla bug #607447 */
++ g_object_class_install_property (o_class,
++ PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE,
++ g_param_spec_boolean ("ubuntu-almost-fixed-height-mode",
++ "Private Ubuntu extension",
++ "Private Ubuntu extension",
++ FALSE,
++ GTK_PARAM_READWRITE));
+
+ /**
+ * GtkTreeView:hover-selection:
+@@ -1736,6 +1747,7 @@
+ tree_view->priv->fixed_height = -1;
+ tree_view->priv->fixed_height_mode = FALSE;
+ tree_view->priv->fixed_height_check = 0;
++ tree_view->priv->ubuntu_almost_fixed_height_mode = FALSE;
+ tree_view->priv->selection = _gtk_tree_selection_new_with_tree_view (tree_view);
+ tree_view->priv->enable_search = TRUE;
+ tree_view->priv->search_column = -1;
+@@ -1828,6 +1840,9 @@
+ case PROP_FIXED_HEIGHT_MODE:
+ gtk_tree_view_set_fixed_height_mode (tree_view, g_value_get_boolean (value));
+ break;
++ case PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE:
++ tree_view->priv->ubuntu_almost_fixed_height_mode = g_value_get_boolean (value);
++ break;
+ case PROP_HOVER_SELECTION:
+ tree_view->priv->hover_selection = g_value_get_boolean (value);
+ break;
+@@ -8740,7 +8755,15 @@
+
+ _gtk_tree_view_accessible_changed (tree_view, tree, node);
+
+- if (tree_view->priv->fixed_height_mode
++ if (tree_view->priv->ubuntu_almost_fixed_height_mode
++ && tree_view->priv->fixed_height >= 0)
++ {
++ _gtk_rbtree_node_mark_invalid (tree, node);
++ validate_visible_area (tree_view);
++ if (gtk_widget_get_realized (GTK_WIDGET (tree_view)))
++ gtk_tree_view_node_queue_redraw (tree_view, tree, node);
++ }
++ else if (tree_view->priv->fixed_height_mode
+ && tree_view->priv->fixed_height >= 0)
+ {
+ _gtk_rbtree_node_set_height (tree, node, tree_view->priv->fixed_height);
diff --git a/desktop/toolkit/gtk/gtk3/files/settings.ini b/desktop/toolkit/gtk/gtk3/files/settings.ini
new file mode 100644
index 0000000000..36d8423477
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/files/settings.ini
@@ -0,0 +1,4 @@
+[Settings]
+gtk-icon-theme-name = Faenza
+gtk-theme-name = MediterraneanLightDarkest
+gtk-font-name = DejaVuSans 10
diff --git a/desktop/toolkit/gtk/gtk3/pspec.xml b/desktop/toolkit/gtk/gtk3/pspec.xml
new file mode 100644
index 0000000000..30d4c5e723
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/pspec.xml
@@ -0,0 +1,263 @@
+
+
+
+
+ gtk3
+ http://www.gtk.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ The GIMP Toolkit version 3
+ GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites.
+ mirrors://gnome/gtk+/3.14/gtk+-3.14.9.tar.xz
+
+ atk-devel
+ cups-devel
+ at-spi2-atk-devel
+ pango-devel
+ librest-devel
+ json-glib-devel
+ libXi-devel
+ cairo-devel
+ colord-devel
+ libXext-devel
+ libXrandr-devel
+ libXfixes-devel
+ gdk-pixbuf-devel
+ fontconfig-devel
+ libXcursor-devel
+ libXdamage-devel
+ libXinerama-devel
+ libXcomposite-devel
+
+
+ 071_fix-installation-of-HTML-images.patch
+
+
+
+
+
+ gtk3
+
+ atk
+ cups
+ pango
+ libXi
+ librest
+ json-glib
+ cairo
+ colord
+ libXext
+ libXrandr
+ libXfixes
+ gdk-pixbuf
+ fontconfig
+ libXcursor
+ libXdamage
+ libXinerama
+ at-spi2-atk
+ libXcomposite
+ dejavu-fonts
+ gtk-theme-mediterranean
+
+
+ /etc
+ /usr/bin
+ /usr/share/themes
+ /usr/share/gtk-3.0
+ /usr/share/
+ /usr/share/man
+ /usr/share/doc
+ /usr/lib
+ /usr/share/locale
+
+
+
+ settings.ini
+
+
+ System.PackageHandler
+
+
+
+
+ gtk3-demo
+ app:gui
+ GTK demo application
+
+ gtk3
+ cairo
+ pango
+ gdk-pixbuf
+
+
+ /usr/bin/gtk3-demo
+ /usr/bin/gtk3-demo-application
+
+
+
+
+ gtk3-docs
+ data:doc
+ GTK reference documents
+
+ /usr/share/doc/gtk3
+
+
+
+
+ gtk3-devel
+ Development files for gtk3
+
+ gtk3
+ atk-devel
+ pango-devel
+ libXi-devel
+ cairo-devel
+ libXext-devel
+ libXfixes-devel
+ libXrandr-devel
+ gdk-pixbuf-devel
+ fontconfig-devel
+ libXdamage-devel
+ libXcursor-devel
+ libXinerama-devel
+ at-spi2-atk-devel
+ libXcomposite-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig
+ /usr/share/aclocal
+ /usr/share/gir-1.0
+
+
+
+
+ gtk3-32bit
+ emul32
+ 32-bit shared libraries for gtk3
+ _emul32
+
+ atk-32bit
+ cups-32bit
+ glib2-32bit
+ cairo-32bit
+ pango-32bit
+ libXi-32bit
+ libX11-32bit
+ libXext-32bit
+ libXrandr-32bit
+ libXfixes-32bit
+ gdk-pixbuf-32bit
+ libXcursor-32bit
+ libXdamage-32bit
+ fontconfig-32bit
+ at-spi2-atk-32bit
+ libXinerama-32bit
+ libXcomposite-32bit
+
+
+ gtk3
+ atk-32bit
+ cups-32bit
+ glib2-32bit
+ cairo-32bit
+ pango-32bit
+ librest-32bit
+ json-glib-32bit
+ libXi-32bit
+ libX11-32bit
+ libXext-32bit
+ libXrandr-32bit
+ libXfixes-32bit
+ gdk-pixbuf-32bit
+ libXcursor-32bit
+ libXdamage-32bit
+ fontconfig-32bit
+ at-spi2-atk-32bit
+ libXinerama-32bit
+ libXcomposite-32bit
+
+
+ /usr/bin/*-32bit
+ /usr/lib32
+
+
+
+
+
+ 2015-03-18
+ 3.14.9
+ Version bump.
+ Hakan Yıldız
+ hknyldz93@gmail.com
+
+
+ 2014-04-12
+ 3.12.2
+ Version Bump
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-04-06
+ 3.10.7
+ Rebuild
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2014-02-05
+ 3.10.7
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2013-10-21
+ 3.10.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2013-10-11
+ 3.10.0
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2013-09-05
+ 3.8.2
+ Add missing method and fix pakhandler.py
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-07-27
+ 3.8.2
+ Dep Fixed
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2013-07-14
+ 3.8.2
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-04-24
+ 3.6.4
+ First release
+ Ertan Güven
+ ertan@pisilinux.org
+
+
+
diff --git a/desktop/toolkit/gtk/gtk3/translations.xml b/desktop/toolkit/gtk/gtk3/translations.xml
new file mode 100644
index 0000000000..3b3f58e3bd
--- /dev/null
+++ b/desktop/toolkit/gtk/gtk3/translations.xml
@@ -0,0 +1,31 @@
+
+
+
+ gtk3
+ GTK grafik arayüz kitaplığı versiyon 3
+ GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır.
+ GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications.
+ Wersja 3 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce.
+
+
+
+ gtk3-demo
+ GTK demo uyulaması
+
+
+
+ gtk3-docs
+ GTK referans dökümanları
+
+
+
+ gtk3-devel
+ gtk3 için geliştirme dosyaları
+ Pliki nagłówkowe do gtk3
+
+
+
+ gtk3-32bit
+ gtk3 için 32-bit paylaşımlı kitaplıklar
+
+
diff --git a/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml b/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml
index b1a6216127..4707194f36 100644
--- a/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-accountsservice/pspec.xml
@@ -21,6 +21,11 @@
qt5-accountsservice
+
+ libgcc
+ qt5-base
+ qt5-declarative
+
/usr/lib
/usr/lib/qt5
@@ -29,11 +34,6 @@
/usr/lib/qt5/bin/
/usr/bin
-
- libgcc
- qt5-base
- qt5-declarative
-
diff --git a/desktop/toolkit/qt5/qt5-configuration/pspec.xml b/desktop/toolkit/qt5/qt5-configuration/pspec.xml
index 0e783f4c1e..b0663ee1d2 100644
--- a/desktop/toolkit/qt5/qt5-configuration/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-configuration/pspec.xml
@@ -22,6 +22,12 @@
qt5-configuration
+
+ libgcc
+ glib2
+ dconf
+ qt5-base
+
/usr/lib
/usr/lib/qt5
@@ -30,12 +36,6 @@
/usr/lib/qt5/bin/
/usr/bin
-
- libgcc
- glib2
- dconf
- qt5-base
-
diff --git a/desktop/toolkit/qt5/qt5-declarative/pspec.xml b/desktop/toolkit/qt5/qt5-declarative/pspec.xml
index 59be51eaad..0448a179d1 100644
--- a/desktop/toolkit/qt5/qt5-declarative/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-declarative/pspec.xml
@@ -22,6 +22,12 @@
qt5-declarative
+
+ libgcc
+ qt5-base
+ mesa
+ qt5-xmlpatterns
+
/usr/lib
/usr/lib/qt5
@@ -29,11 +35,7 @@
/usr/lib/qt5/bin/
/usr/bin/
-
- qt5-base
- mesa
- qt5-xmlpatterns
-
+
diff --git a/desktop/toolkit/qt5/qt5-enginio/pspec.xml b/desktop/toolkit/qt5/qt5-enginio/pspec.xml
index be0de0ac2c..07d5f8a2c7 100644
--- a/desktop/toolkit/qt5/qt5-enginio/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-enginio/pspec.xml
@@ -13,6 +13,7 @@
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
+ libgcc
qt5-base-devel
qt5-declarative-devel
@@ -20,6 +21,11 @@
qt5-enginio
+
+ libgcc
+ qt5-base
+ qt5-declarative
+
/usr/lib
/usr/lib/qt5/
@@ -27,10 +33,7 @@
/usr/lib/qt5/bin/
/usr/bin/
-
- qt5-base
- qt5-declarative
-
+
diff --git a/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml b/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml
index 3ac16e116d..38a3bd09b6 100644
--- a/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml
@@ -20,16 +20,16 @@
qt5-graphicaleffects
+
+ qt5-base
+ qt5-declarative
+
/usr/lib
/usr/lib/qt5
/usr/share/licenses
/usr/share/doc
-
- qt5-base
- qt5-declarative
-
diff --git a/desktop/toolkit/qt5/qt5-imageformats/pspec.xml b/desktop/toolkit/qt5/qt5-imageformats/pspec.xml
index 78d177dd2c..9f745e14b7 100644
--- a/desktop/toolkit/qt5/qt5-imageformats/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-imageformats/pspec.xml
@@ -14,18 +14,13 @@
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
+ jasper-devel
libmng-devel
qt5-imageformats
-
- /usr/lib
- /usr/lib/qt5
- /usr/share/licenses
-
qt5-base
libmng
@@ -33,6 +28,11 @@
webp
jasper
+
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share/licenses
+
diff --git a/desktop/toolkit/qt5/qt5-script/pspec.xml b/desktop/toolkit/qt5/qt5-script/pspec.xml
index bebe313f8b..fec6c327e0 100644
--- a/desktop/toolkit/qt5/qt5-script/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-script/pspec.xml
@@ -31,13 +31,13 @@
qt5-script-devel
+
+ qt5-base-devel
+
/usr/lib/pkgconfig
/usr/include/qt5
-
- qt5-base-devel
-
diff --git a/desktop/toolkit/qt5/qt5-x11extras/pspec.xml b/desktop/toolkit/qt5/qt5-x11extras/pspec.xml
index 3503dc4da4..7dbf3a143d 100644
--- a/desktop/toolkit/qt5/qt5-x11extras/pspec.xml
+++ b/desktop/toolkit/qt5/qt5-x11extras/pspec.xml
@@ -14,19 +14,20 @@
http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz
qt5-base-devel
+ mesa-devel
qt5-x11extras
+
+ qt5-base
+
/usr/lib
/usr/lib/qt5
/usr/share/licenses
-
- qt5-base
-