Kaydet (Commit) 87cdc328 authored tarafından Your Name's avatar Your Name

siz benim neler çektiğimi nerden bileceksiniz?

üst f3b75037
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from inary.actionsapi import autotools
from inary.actionsapi import shelltools
from inary.actionsapi import inarytools
def setup():
shelltools.system("mkdir m4")
shelltools.system("intltoolize")
shelltools.system("autoreconf -fvi")
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.install()
# fix conflict with gnome-themes
inarytools.remove("usr/share/icons/HighContrast/index.theme")
inarytools.remove("usr/share/themes/HighContrast/index.theme")
inarytools.remove("usr/share/themes/HighContrast/gtk-2.0/gtkrc")
<!DOCTYPE INARY SYSTEM "http://www.sulin.org.tr/projeler/inary/inary-spec.dtd">
<INARY>
<Source>
<Name>gnome-themes-extra</Name>
<Homepage>http://www.gnome.org</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>data</IsA>
<Summary>Extra themes for the GNOME desktop</Summary>
<Description>gnome-themes allows to change appearance of window frames, cursors, icon and gtk themes.</Description>
<Archive sha1sum="29705b0f838a7a2942e066d68ee1e5bbfd02e715">https://gitlab.gnome.org/GNOME/gnome-themes-extra/-/archive/3.28/gnome-themes-extra-3.28.tar.gz</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gnome-themes-extra</Name>
<RuntimeDependencies>
<Dependency>librsvg</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>icon-theme-gnome</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/themes</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-21</Date>
<Version>3.28</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</INARY>
......@@ -8,14 +8,10 @@ from inary.actionsapi import autotools
from inary.actionsapi import inarytools
def setup():
autotools.configure("--prefix=/usr --enable-animation")
inarytools.dosed("libtool", " -shared ", \
" -Wl,--as-needed -shared ")
autotools.configure("--prefix=/usr --enable-lua --with-system-lua")
def build():
autotools.make()
def install():
autotools.install()
inarytools.dodoc("ChangeLog", "COPYING", "NEWS", "README")
......@@ -10,10 +10,11 @@
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>A collection of GTK+ 3.x engines</Summary>
<Description>gtk-engines is a collection of GTK+ 3.x engines written in C that transforms your GNOME/XFCE desktop into a modern looking environment. It is fast, and easy on the eyes.</Description>
<Archive sha1sum="574c7577d70eaacecd2ffa14e288ef88fdcb6c2a" type="tarbz2">http://ftp.acc.umu.se/pub/GNOME/sources/gtk-engines/2.91/gtk-engines-2.20.2.tar.bz2</Archive>
<Summary>A collection of GTK+ 2.x engines</Summary>
<Description>gtk-engines is a collection of GTK+ 2.x engines written in C that transforms your GNOME/XFCE desktop into a modern looking environment. It is fast, and easy on the eyes.</Description>
<Archive sha1sum="574c7577d70eaacecd2ffa14e288ef88fdcb6c2a">http://ftp.gnome.org/pub/gnome/sources/gtk-engines/2.20/gtk-engines-2.20.2.tar.bz2</Archive>
<BuildDependencies>
<Dependency>lua-devel</Dependency>
<Dependency>gtk2</Dependency>
</BuildDependencies>
</Source>
......@@ -22,6 +23,7 @@
<Name>gtk-engines</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>lua</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
......
......@@ -9,15 +9,17 @@ from inary.actionsapi import get
from inary.actionsapi import shelltools
from inary.actionsapi import inarytools
shelltools.export("CFLAGS","")
shelltools.export("CXXFLAGS","")
shelltools.export("LDFLAGS","")
if get.buildTYPE()=="emul32":
shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig")
def setup():
shelltools.export("CFLAGS"," -DG_ENABLE_DEBUG -DG_DISABLE_CAST_CHECKS")
shelltools.export("CXXFLAGS","")
shelltools.export("LDFLAGS","")
mesontools.meson_configure("-D broadway_backend=true -Dcolord=yes -Denable-gtk-doc=false ")
mesontools.meson_configure("-Dbroadway_backend=true -Dx11_backend=true -Dcolord=yes -Dgtk_doc=false -Dman=true")
def build():
mesontools.ninja_build()
......
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)
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);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment