diff --git a/desktop/gnome/base/gnome-doc-utils/actions.py b/desktop/gnome/base/gnome-doc-utils/actions.py new file mode 100644 index 0000000000..4e05bce230 --- /dev/null +++ b/desktop/gnome/base/gnome-doc-utils/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 autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +def setup(): + shelltools.copy("tools/gnome-doc-utils.m4", "m4/") + #autotools.autoreconf("-fiv") + autotools.configure() + +def build(): + autotools.make("-j1") + +def install(): + autotools.install() + + pisitools.dodoc("AUTHORS", "ChangeLog", "README", "NEWS") diff --git a/desktop/gnome/base/gnome-doc-utils/files/do-not-update-scrollkeeper-database.patch b/desktop/gnome/base/gnome-doc-utils/files/do-not-update-scrollkeeper-database.patch new file mode 100644 index 0000000000..35e537a4ee --- /dev/null +++ b/desktop/gnome/base/gnome-doc-utils/files/do-not-update-scrollkeeper-database.patch @@ -0,0 +1,11 @@ +diff -ur gnome-doc-utils-0.18.1.orig/tools/gnome-doc-utils.make gnome-doc-utils-0.18.1/tools/gnome-doc-utils.make +--- gnome-doc-utils-0.18.1.orig/tools/gnome-doc-utils.make 2009-11-19 18:54:47.000000000 +0200 ++++ gnome-doc-utils-0.18.1/tools/gnome-doc-utils.make 2010-01-22 20:11:57.324726926 +0200 +@@ -597,7 +597,6 @@ + done + @if test "x$(_ENABLE_SK)" = "xtrue"; then \ + echo "scrollkeeper-update -p $(DESTDIR)$(_sklocalstatedir) -o $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \ +- scrollkeeper-update -p "$(DESTDIR)$(_sklocalstatedir)" -o "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \ + fi; + + install-doc-dsk: diff --git a/desktop/gnome/base/gnome-doc-utils/pspec.xml b/desktop/gnome/base/gnome-doc-utils/pspec.xml new file mode 100644 index 0000000000..c0bd435d46 --- /dev/null +++ b/desktop/gnome/base/gnome-doc-utils/pspec.xml @@ -0,0 +1,57 @@ + + + + + gnome-doc-utils + http://live.gnome.org/GnomeDocUtils + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + A collection of documentation utilities for the Gnome project + gnome-doc-utils is a collection of documentation utilities for the Gnome project. + http://ftp.acc.umu.se/pub/GNOME/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.10.tar.xz + + gawk + intltool + pkgconfig + gettext-devel + docbook-xml + libxslt-devel + + + do-not-update-scrollkeeper-database.patch + + + + + gnome-doc-utils + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/omf + /usr/bin + /usr/share/xml + /usr/share/gnome + /usr/share/xml2po + /usr/share/aclocal + /usr/share/pkgconfig + /usr/share/locale + /usr/share/gnome-doc-utils + + + + + + 2020-11-19 + 0.20.10 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/desktop/gnome/base/gnome-doc-utils/translations.xml b/desktop/gnome/base/gnome-doc-utils/translations.xml new file mode 100644 index 0000000000..50620f74b8 --- /dev/null +++ b/desktop/gnome/base/gnome-doc-utils/translations.xml @@ -0,0 +1,8 @@ + + + + gnome-doc-utils + Gnome projesi için döküman araçları takımı + gnome-doc-utils Gnome projesinde kullanılan belgelendirme araçlarını içermektedir. + + diff --git a/programming/misc/libdbusmenu/actions.py b/programming/misc/libdbusmenu/actions.py new file mode 100644 index 0000000000..5b4bc041e5 --- /dev/null +++ b/programming/misc/libdbusmenu/actions.py @@ -0,0 +1,65 @@ +#!/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 get +import os + +WorkDir="libdbusmenu-%s" % get.srcVERSION() +ver = get.srcVERSION() + +options = "--disable-dumper \ + --disable-static \ + --enable-vala=no \ + --enable-gtk-doc \ + --disable-silent-rules \ + --disable-scrollkeeper \ + --enable-introspection=yes \ + --disable-tests \ + --disable-tests" + + + +def setup(): + shelltools.cd("%s/libdbusmenu-%s" %(get.workDIR(), ver)) + shelltools.system("sed -i 's/-Werror//' libdbusmenu-*/Makefile.{am,in}") + shelltools.cd("..") + shelltools.system("mkdir libdbusmenu-gtk2") + shelltools.system("mkdir libdbusmenu-gtk3") + shelltools.system("cp -ra libdbusmenu-16.04.0/* /var/pisi/libdbusmenu-16.04.0-1/work/libdbusmenu-gtk2") + shelltools.system("cp -ra libdbusmenu-16.04.0/* /var/pisi/libdbusmenu-16.04.0-1/work/libdbusmenu-gtk3") + + +def build(): + shelltools.export("HAVE_VALGRIND_TRUE", "#") + shelltools.export("HAVE_VALGRIND_FALSE", " ") + shelltools.cd("%s/libdbusmenu-%s" %(get.workDIR(), ver)) + autotools.configure("%s" % options) + + shelltools.cd("%s/libdbusmenu-%s" % (get.workDIR(), 'gtk3')) + autotools.configure("%s --with-gtk=3" % options) + + shelltools.cd("%s/libdbusmenu-%s" % (get.workDIR(), 'gtk2')) + autotools.configure("%s --with-gtk=2" % options) + +def install(): + shelltools.cd("%s/libdbusmenu-%s" %(get.workDIR(), ver)) + autotools.rawInstall("-C libdbusmenu-glib DESTDIR=%s" % get.installDIR()) + autotools.rawInstall("-C tools DESTDIR=%s" % get.installDIR()) + + shelltools.cd("%s/libdbusmenu-%s" %(get.workDIR(), 'gtk2')) + autotools.rawInstall("-C libdbusmenu-glib DESTDIR=%s" % get.installDIR()) + autotools.rawInstall("-C libdbusmenu-gtk DESTDIR=%s" % get.installDIR()) + + + shelltools.cd("%s/libdbusmenu-%s" %(get.workDIR(), 'gtk3')) + autotools.rawInstall("-C libdbusmenu-glib DESTDIR=%s" % get.installDIR()) + autotools.rawInstall("-C libdbusmenu-gtk DESTDIR=%s" % get.installDIR()) + + shelltools.cd("%s/libdbusmenu-%s" % (get.workDIR(), ver)) + pisitools.dodoc("AUTHORS", "COPYING*", "README", "NEWS") diff --git a/programming/misc/libdbusmenu/files/0001_autoconf.patch b/programming/misc/libdbusmenu/files/0001_autoconf.patch new file mode 100644 index 0000000000..18d74a37a6 --- /dev/null +++ b/programming/misc/libdbusmenu/files/0001_autoconf.patch @@ -0,0 +1,12 @@ +diff -Nru libdbusmenu-12.10.2.orig/configure.ac libdbusmenu-12.10.2/configure.ac +--- libdbusmenu-12.10.2.orig/configure.ac 2013-01-09 15:44:34.554871296 -0500 ++++ libdbusmenu-12.10.2/configure.ac 2013-01-09 15:44:45.604812416 -0500 +@@ -4,7 +4,7 @@ + + AC_PREREQ(2.62) + +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_INIT_AUTOMAKE(libdbusmenu, 16.04.0, [-Wno-portability]) + + AM_MAINTAINER_MODE diff --git a/programming/misc/libdbusmenu/files/g_type_init.patch b/programming/misc/libdbusmenu/files/g_type_init.patch new file mode 100644 index 0000000000..a050f169e4 --- /dev/null +++ b/programming/misc/libdbusmenu/files/g_type_init.patch @@ -0,0 +1,26 @@ +--- a/tools/dbusmenu-dumper.c ++++ b/tools/dbusmenu-dumper.c +@@ -388,7 +388,10 @@ + int + main (int argc, char ** argv) + { ++#if GLIB_VERSION_CUR_STABLE < G_ENCODE_VERSION(2, 36) ++ // g_type_init is deprecated after 2.36 + g_type_init(); ++#endif + GError * error = NULL; + GOptionContext * context; + +--- a/tools/testapp/main.c ++++ b/tools/testapp/main.c +@@ -135,7 +135,10 @@ + + int main (int argc, char ** argv) + { ++#if GLIB_VERSION_CUR_STABLE < G_ENCODE_VERSION(2, 36) ++ // g_type_init is deprecated after 2.36 + g_type_init(); ++#endif + + if (argc != 2) { + g_warning(USAGE); diff --git a/programming/misc/libdbusmenu/files/reference-xinclude.patch b/programming/misc/libdbusmenu/files/reference-xinclude.patch new file mode 100644 index 0000000000..a4e6ee3a0b --- /dev/null +++ b/programming/misc/libdbusmenu/files/reference-xinclude.patch @@ -0,0 +1,22 @@ +--- a/docs/libdbusmenu-glib/reference/libdbusmenu-glib-docs.sgml ++++ b/docs/libdbusmenu-glib/reference/libdbusmenu-glib-docs.sgml +@@ -15,9 +15,6 @@ + + + +- +- +- + + + +--- a/docs/libdbusmenu-gtk/reference/libdbusmenu-gtk-docs.sgml ++++ b/docs/libdbusmenu-gtk/reference/libdbusmenu-gtk-docs.sgml +@@ -15,7 +15,6 @@ + + + +- + + + diff --git a/programming/misc/libdbusmenu/pspec.xml b/programming/misc/libdbusmenu/pspec.xml new file mode 100644 index 0000000000..daec623024 --- /dev/null +++ b/programming/misc/libdbusmenu/pspec.xml @@ -0,0 +1,149 @@ + + + + + libdbusmenu + https://launchpad.net/dbusmenu + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + Library for applications to pass a menu scructure accross DBus + libdbusmenu is a small little library that was created by pulling out some common code out of indicator-applet. It passes a menu structure across DBus so that a program can create a menu simply without worrying about how it is displayed on the other side of the bus. + https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz + + gtk2-devel + gtk3-devel + gnome-doc-utils + json-glib-devel + gtk-doc + + + 0001_autoconf.patch + + + + + libdbusmenu-glib + GLIB bindings for libdbusmenu + + libdbusmenu-common + json-glib + + + /usr/lib/libdbusmenu-glib* + /usr/lib/libdbusmenu-json* + /usr/share/libdbusmenu + /usr/share/gtk-doc/html/libdbusmenu-glib + + + + + libdbusmenu-common + Common files for libdbusmenu libraries + + /usr/share/doc + /usr/share/vala/vapi/Dbusmenu-*.vapi + /usr/share/gir-1.0/Dbusmenu-*.gir + /usr/lib/girepository-1.0/Dbusmenu-*.typelib + + + + + libdbusmenu-gtk + GTK 2.x libraries for libdbusmenu + + libdbusmenu-glib + libdbusmenu-common + gtk2 + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/libdbusmenu-gtk.so* + /usr/share/vala/vapi/DbusmenuGtk-*.vapi + /usr/share/gir-1.0/DbusmenuGtk-*.gir + /usr/lib/girepository-1.0/DbusmenuGtk-*.typelib + /usr/share/gtk-doc/html/libdbusmenu-gtk + + + + + libdbusmenu-gtk3 + GTK 3.x libraries for libdbusmenu + + libdbusmenu-glib + libdbusmenu-common + gtk3 + atk + cairo + pango + gdk-pixbuf + + + /usr/lib/libdbusmenu-gtk3.so* + /usr/share/vala/vapi/DbusmenuGtk3-*.vapi + /usr/share/gir-1.0/DbusmenuGtk3-*.gir + /usr/lib/girepository-1.0/DbusmenuGtk3-*.typelib + + + + + libdbusmenu-tools + Some examples for testing libdbusmenu + + libdbusmenu-glib + libdbusmenu-common + json-glib + + + /usr/libexec + /usr/share/doc/libdbusmenu/*dbusmenu-bench* + + + + + libdbusmenu-devel + Development files for libdbusmenu + + libdbusmenu-glib + libdbusmenu-gtk + gtk2-devel + gdk-pixbuf-devel + dbus-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + libdbusmenu-devel + Development files for libdbusmenu + + libdbusmenu-glib + libdbusmenu-gtk + gtk3-devel + gdk-pixbuf-devel + dbus-glib-devel + + + + + + + + 2020-11-19 + 16.04.0 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/misc/libdbusmenu/pspec2.xml b/programming/misc/libdbusmenu/pspec2.xml new file mode 100644 index 0000000000..c769d3f3a1 --- /dev/null +++ b/programming/misc/libdbusmenu/pspec2.xml @@ -0,0 +1,123 @@ + + + + + libdbusmenu + https://launchpad.net/dbusmenu + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + Library for applications to pass a menu scructure accross DBus + libdbusmenu is a small little library that was created by pulling out some common code out of indicator-applet. It passes a menu structure across DBus so that a program can create a menu simply without worrying about how it is displayed on the other side of the bus. + https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz + + gtk2-devel + gtk3-devel + gnome-doc-utils + json-glib-devel + gtk-doc + + + 0001_autoconf.patch + + + + + libdbusmenu-common + Common files for libdbusmenu libraries + + /usr/share/doc/libdbusmenu + /usr/lib/girepository-1.0 + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + libdbusmenu-glib + GLIB bindings for libdbusmenu + + libdbusmenu-common + json-glib + + + /usr/lib + /usr/share/gtk-doc/html/libdbusmenu-glib + + + + + libdbusmenu-gtk + GTK 2.x libraries for libdbusmenu + + libdbusmenu-glib + libdbusmenu-common + gtk2 + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/share/gtk-doc/html/libdbusmenu-gtk + + + + + libdbusmenu-gtk3 + GTK 3.x libraries for libdbusmenu + + libdbusmenu-glib + libdbusmenu-common + gtk3 + atk + cairo + pango + gdk-pixbuf + + + + + + + libdbusmenu-tools + Some examples for testing libdbusmenu + + libdbusmenu-glib + libdbusmenu-common + json-glib + + + /usr/libexec + + + + + libdbusmenu-gtk3-devel + Development files for libdbusmenu + + libdbusmenu-glib + libdbusmenu-gtk3 + gtk3-devel + gdk-pixbuf-devel + dbus-glib-devel + + + /usr/include + + + + + + 2020-11-19 + 16.04.0 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/misc/libdbusmenu/translations.xml b/programming/misc/libdbusmenu/translations.xml new file mode 100644 index 0000000000..d0850315e3 --- /dev/null +++ b/programming/misc/libdbusmenu/translations.xml @@ -0,0 +1,38 @@ + + + + libdbusmenu + Uygulamaların DBus üzerinden menü yapılarını gönderebilmelerini sağlayan bir kitaplık + libdbusmenu, indicator-applet uygulamasında kullanılan bazı genel kodların ayrı bir kitaplık haline getirilmesiyle oluşturulmuş bir kitaplıktır. Bu kitaplık ile uygulamaların menü yapısı DBus ile başka uygulamalara iletilebilir, bu sayede uygulamalar karşı tarafta menünün nasıl gösterileceğini dikkate almadan menüler oluşturabilirler. + + + + libdbusmenu-glib + libdbusmenu için GLIB bağlayıcıları + + + + libdbusmenu-gtk + libdbusmenu için GTK 2.x kitaplıkları + + + + libdbusmenu-gtk3 + libdbusmenu için GTK 3.x kitaplıkları + + + + libdbusmenu-tools + libdbusmenu testleri için çeşitli örnekler + + + + libdbusmenu-common + libdbusmenu kitaplıkları için ortak dosyalar + + + + libdbusmenu-devel + libdbusmenu için geliştirme dosyaları + + diff --git a/x11/library/libXpresent/actions.py b/x11/library/libXpresent/actions.py new file mode 100644 index 0000000000..1e1fc99e76 --- /dev/null +++ b/x11/library/libXpresent/actions.py @@ -0,0 +1,20 @@ +# -*- 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.autoreconf("-vif") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*") diff --git a/x11/library/libXpresent/pspec.xml b/x11/library/libXpresent/pspec.xml new file mode 100644 index 0000000000..69eb0bc103 --- /dev/null +++ b/x11/library/libXpresent/pspec.xml @@ -0,0 +1,81 @@ + + + + + libXpresent + https://www.x.org/ + + Ali Cengiz Kurt + admins@pisilinux.org + + MIT + library + X.Org Xpm library + X Present Extension library + https://www.x.org/archive/individual/lib/libXpresent-1.0.0.tar.bz2 + + util-macros + xorg-proto + + + + + libXpresent + + libXfixes + libXrandr + + + /usr/include/X11/extensions + /usr/lib + /usr/lib/pkgconfig + /usr/share/doc + /usr/share/man/man3 + /usr/share/licenses + + + + + libXpresent-devel + library + Development files for libXpresent + + libXpresent + + + /usr/include/X11 + /usr/lib32/pkgconfig + + + + + libXpresent-32bit + emul32 + 32-bit shared libraries for libXpresent + emul32 + + libXfixes-32bit + libXrandr-32bit + libX11-32bit + + + libXpresent + libXfixes-32bit + libXrandr-32bit + libX11-32bit + + + /usr/lib32 + + + + + + 2020-11-22 + 1.0.0 + First Release For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/x11/library/libXpresent/translations.xml b/x11/library/libXpresent/translations.xml new file mode 100644 index 0000000000..ad6bfc5309 --- /dev/null +++ b/x11/library/libXpresent/translations.xml @@ -0,0 +1,21 @@ + + + + Thunar + Xfce dosya yöneticisi + Menedżer plików dla Xfce + Thunar, baştan başa hızlı olmak ve kolay kullanım için tasarlanmıştır. Kullanıcı arayüzü temiz ve çabuk anlaşılabilir; diğer taraftan karışık ve kullanışsız hiçbir seçenek içermiyor. Thunar açılırken ve dizin çağırırken hızlıdır. Ayrıca Thunar'a yardımcı teknolojilerle de erişilebilir ve standartlara tam uyumludur. + Thunar to menedżer plików zaprojektowany jako domyślny w Xfce 4.6 oraz by był szybkim i prostym w użyciu. + + + + Thunar-devel + Thunar geliştirme dosyaları + Pliki nagłówkowe Thunar + + + + Thunar-docs + Thunar referans belgeleri + +