works for qt5

This commit is contained in:
Ertuğrul Erata
2015-07-05 15:54:41 +03:00
parent a53ce5d7de
commit a419578ef6
20 changed files with 678 additions and 36 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.gnome.base</Name>
</PISI>
+21
View File
@@ -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")
+96
View File
@@ -0,0 +1,96 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>dconf</Name>
<Homepage>http://live.gnome.org/dconf</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<Summary>Simple low-level configuration system</Summary>
<Description>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.</Description>
<Archive sha1sum="638a92d176b3efa01c7b3f5dfd89029acc8d799b" type="tarxz">http://ftp.gnome.org/pub/gnome/sources/dconf/0.20/dconf-0.20.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>pango-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>dconf</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>pango</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/libexec</Path>
</Files>
</Package>
<Package>
<Name>dconf-devel</Name>
<Summary>Development files for dconf</Summary>
<RuntimeDependencies>
<Dependency release="current">dconf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/share/vala</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>dconf-docs</Name>
<IsA>data:doc</IsA>
<Summary>Reference files for dconf</Summary>
<RuntimeDependencies>
<Dependency release="current">dconf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-06-14</Date>
<Version>0.20</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-10-29</Date>
<Version>0.18</Version>
<Comment>Version bump.</Comment>
<Name>Richard de Bruin</Name>
<Email>richdb@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-31</Date>
<Version>0.16.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-21</Date>
<Version>0.15.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>dconf</Name>
<Summary xml:lang="tr">Düşük seviyeli yapılandırma sistemi</Summary>
<Description xml:lang="tr">FIXME</Description>
</Source>
</PISI>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.gnome</Name>
</PISI>
+61
View File
@@ -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")
@@ -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)
@@ -0,0 +1,28 @@
From 4c220ef6650afeba334570ad00db0a95c9ba38e6 Mon Sep 17 00:00:00 2001
From: Michael Biebl <biebl@debian.org>
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)
@@ -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);
@@ -0,0 +1,4 @@
[Settings]
gtk-icon-theme-name = Faenza
gtk-theme-name = MediterraneanLightDarkest
gtk-font-name = DejaVuSans 10
+263
View File
@@ -0,0 +1,263 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gtk3</Name>
<Homepage>http://www.gtk.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<Summary>The GIMP Toolkit version 3</Summary>
<Description>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.</Description>
<Archive sha1sum="c69a979a74aa527214e058ff1840127d91233103" type="tarxz">mirrors://gnome/gtk+/3.14/gtk+-3.14.9.tar.xz</Archive>
<BuildDependencies>
<Dependency>atk-devel</Dependency>
<Dependency>cups-devel</Dependency>
<Dependency>at-spi2-atk-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>librest-devel</Dependency>
<Dependency>json-glib-devel</Dependency>
<Dependency>libXi-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>colord-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>libXdamage-devel</Dependency>
<Dependency>libXinerama-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">071_fix-installation-of-HTML-images.patch</Patch>
<!--<Patch level="1">073_treeview_almost_fixed.patch</Patch>-->
</Patches>
</Source>
<Package>
<Name>gtk3</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>cups</Dependency>
<Dependency>pango</Dependency>
<Dependency>libXi</Dependency>
<Dependency>librest</Dependency>
<Dependency>json-glib</Dependency>
<Dependency>cairo</Dependency>
<Dependency>colord</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXcursor</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXinerama</Dependency>
<Dependency>at-spi2-atk</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>dejavu-fonts</Dependency>
<Dependency>gtk-theme-mediterranean</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/themes</Path>
<Path fileType="data">/usr/share/gtk-3.0</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
<!-- Use Clearlooks as default theme for now until native Oxygen GTK style is ready -->
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/gtk-3.0/settings.ini">settings.ini</AdditionalFile>
</AdditionalFiles>
<Provides>
<COMAR script="pakhandler.py">System.PackageHandler</COMAR>
</Provides>
</Package>
<Package>
<Name>gtk3-demo</Name>
<IsA>app:gui</IsA>
<Summary>GTK demo application</Summary>
<RuntimeDependencies>
<Dependency release="current">gtk3</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/gtk3-demo</Path>
<Path fileType="executable">/usr/bin/gtk3-demo-application</Path>
</Files>
</Package>
<Package>
<Name>gtk3-docs</Name>
<IsA>data:doc</IsA>
<Summary>GTK reference documents</Summary>
<Files>
<Path fileType="data">/usr/share/doc/gtk3</Path>
</Files>
</Package>
<Package>
<Name>gtk3-devel</Name>
<Summary>Development files for gtk3</Summary>
<RuntimeDependencies>
<Dependency release="current">gtk3</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>libXi-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libXdamage-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>libXinerama-devel</Dependency>
<Dependency>at-spi2-atk-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="library">/usr/lib32/pkgconfig</Path>
<Path fileType="data">/usr/share/aclocal</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<Package>
<Name>gtk3-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for gtk3</Summary>
<BuildType>_emul32</BuildType>
<BuildDependencies>
<Dependency>atk-32bit</Dependency>
<Dependency>cups-32bit</Dependency>
<Dependency>glib2-32bit</Dependency>
<Dependency>cairo-32bit</Dependency>
<Dependency>pango-32bit</Dependency>
<Dependency>libXi-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
<Dependency>libXext-32bit</Dependency>
<Dependency>libXrandr-32bit</Dependency>
<Dependency>libXfixes-32bit</Dependency>
<Dependency>gdk-pixbuf-32bit</Dependency>
<Dependency>libXcursor-32bit</Dependency>
<Dependency>libXdamage-32bit</Dependency>
<Dependency>fontconfig-32bit</Dependency>
<Dependency>at-spi2-atk-32bit</Dependency>
<Dependency>libXinerama-32bit</Dependency>
<Dependency>libXcomposite-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">gtk3</Dependency>
<Dependency>atk-32bit</Dependency>
<Dependency>cups-32bit</Dependency>
<Dependency>glib2-32bit</Dependency>
<Dependency>cairo-32bit</Dependency>
<Dependency>pango-32bit</Dependency>
<Dependency>librest-32bit</Dependency>
<Dependency>json-glib-32bit</Dependency>
<Dependency>libXi-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
<Dependency>libXext-32bit</Dependency>
<Dependency>libXrandr-32bit</Dependency>
<Dependency>libXfixes-32bit</Dependency>
<Dependency>gdk-pixbuf-32bit</Dependency>
<Dependency>libXcursor-32bit</Dependency>
<Dependency>libXdamage-32bit</Dependency>
<Dependency>fontconfig-32bit</Dependency>
<Dependency>at-spi2-atk-32bit</Dependency>
<Dependency>libXinerama-32bit</Dependency>
<Dependency>libXcomposite-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/*-32bit</Path>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="10">
<Date>2015-03-18</Date>
<Version>3.14.9</Version>
<Comment>Version bump.</Comment>
<Name>Hakan Yıldız</Name>
<Email>hknyldz93@gmail.com</Email>
</Update>
<Update release="9">
<Date>2014-04-12</Date>
<Version>3.12.2</Version>
<Comment>Version Bump</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2014-04-06</Date>
<Version>3.10.7</Version>
<Comment>Rebuild</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-02-05</Date>
<Version>3.10.7</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2013-10-21</Date>
<Version>3.10.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-10-11</Date>
<Version>3.10.0</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-09-05</Date>
<Version>3.8.2</Version>
<Comment>Add missing method and fix pakhandler.py</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-07-27</Date>
<Version>3.8.2</Version>
<Comment>Dep Fixed</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-14</Date>
<Version>3.8.2</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-04-24</Date>
<Version>3.6.4</Version>
<Comment>First release</Comment>
<Name>Ertan Güven</Name>
<Email>ertan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+31
View File
@@ -0,0 +1,31 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gtk3</Name>
<Summary xml:lang="tr">GTK grafik arayüz kitaplığı versiyon 3</Summary>
<Description xml:lang="tr">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.</Description>
<Description xml:lang="fr">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.</Description>
<Description xml:lang="pl">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.</Description>
</Source>
<Package>
<Name>gtk3-demo</Name>
<Summary xml:lang="tr">GTK demo uyulaması</Summary>
</Package>
<Package>
<Name>gtk3-docs</Name>
<Summary xml:lang="tr">GTK referans dökümanları</Summary>
</Package>
<Package>
<Name>gtk3-devel</Name>
<Summary xml:lang="tr">gtk3 için geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe do gtk3</Summary>
</Package>
<Package>
<Name>gtk3-32bit</Name>
<Summary xml:lang="tr">gtk3 için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>
@@ -21,6 +21,11 @@
<Package>
<Name>qt5-accountsservice</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
@@ -29,11 +34,6 @@
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
@@ -22,6 +22,12 @@
<Package>
<Name>qt5-configuration</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dconf</Dependency>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
@@ -30,12 +36,6 @@
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dconf</Dependency>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
@@ -22,6 +22,12 @@
<Package>
<Name>qt5-declarative</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>mesa</Dependency>
<Dependency>qt5-xmlpatterns</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
@@ -29,11 +35,7 @@
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>mesa</Dependency>
<Dependency>qt5-xmlpatterns</Dependency>
</RuntimeDependencies>
</Package>
<Package>
+7 -4
View File
@@ -13,6 +13,7 @@
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="3be31b3178801ddc258d9f381fe034d77d1da5a3" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
@@ -20,6 +21,11 @@
<Package>
<Name>qt5-enginio</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5/</Path>
@@ -27,10 +33,7 @@
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
@@ -20,16 +20,16 @@
<Package>
<Name>qt5-graphicaleffects</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<History>
@@ -14,18 +14,13 @@
<Archive sha1sum="15dab37445225f979509a4d0a1cef776955ca01b" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>jasper-32bit</Dependency>
<Dependency>jasper-devel</Dependency>
<Dependency>libmng-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-imageformats</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>libmng</Dependency>
@@ -33,6 +28,11 @@
<Dependency>webp</Dependency>
<Dependency>jasper</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
</Package>
<History>
+3 -3
View File
@@ -31,13 +31,13 @@
<Package>
<Name>qt5-script-devel</Name>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
+4 -3
View File
@@ -14,19 +14,20 @@
<Archive sha1sum="a9b5a4e9ac2c179cb5176c7c0c08ba413f40ec21" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>mesa-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-x11extras</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>