From 7c3dfc0764a3e0c88b7dd637491a308d26521aa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sat, 20 Jun 2015 09:28:59 +0300 Subject: [PATCH] libX11 and deps in main... --- programming/library/component.xml | 4 + programming/library/libbsd/actions.py | 25 ++++ programming/library/libbsd/pspec.xml | 49 +++++++ programming/library/libbsd/translations.xml | 8 ++ x11/library/libX11/actions.py | 26 ++++ .../libX11/files/fix-null-pointer.patch | 12 ++ x11/library/libX11/files/fix-segfault.diff | 50 +++++++ x11/library/libX11/files/fix_typo.diff | 27 ++++ x11/library/libX11/pspec.xml | 128 ++++++++++++++++++ x11/library/libX11/translations.xml | 19 +++ x11/library/libXau/actions.py | 20 +++ x11/library/libXau/files/visibility.patch | 22 +++ x11/library/libXau/pspec.xml | 92 +++++++++++++ x11/library/libXau/translations.xml | 20 +++ x11/library/libXdmcp/actions.py | 22 +++ x11/library/libXdmcp/pspec.xml | 104 ++++++++++++++ x11/library/libXdmcp/translations.xml | 20 +++ x11/library/libxcb/actions.py | 30 ++++ .../files/libxcb-1.1-no-pthread-stubs.patch | 11 ++ x11/library/libxcb/files/pthread-stubs.pc | 8 ++ x11/library/libxcb/pspec.xml | 125 +++++++++++++++++ x11/library/libxcb/translations.xml | 17 +++ 22 files changed, 839 insertions(+) create mode 100644 programming/library/component.xml create mode 100644 programming/library/libbsd/actions.py create mode 100644 programming/library/libbsd/pspec.xml create mode 100644 programming/library/libbsd/translations.xml create mode 100644 x11/library/libX11/actions.py create mode 100644 x11/library/libX11/files/fix-null-pointer.patch create mode 100644 x11/library/libX11/files/fix-segfault.diff create mode 100644 x11/library/libX11/files/fix_typo.diff create mode 100644 x11/library/libX11/pspec.xml create mode 100644 x11/library/libX11/translations.xml create mode 100644 x11/library/libXau/actions.py create mode 100644 x11/library/libXau/files/visibility.patch create mode 100644 x11/library/libXau/pspec.xml create mode 100644 x11/library/libXau/translations.xml create mode 100644 x11/library/libXdmcp/actions.py create mode 100644 x11/library/libXdmcp/pspec.xml create mode 100644 x11/library/libXdmcp/translations.xml create mode 100644 x11/library/libxcb/actions.py create mode 100644 x11/library/libxcb/files/libxcb-1.1-no-pthread-stubs.patch create mode 100644 x11/library/libxcb/files/pthread-stubs.pc create mode 100644 x11/library/libxcb/pspec.xml create mode 100644 x11/library/libxcb/translations.xml diff --git a/programming/library/component.xml b/programming/library/component.xml new file mode 100644 index 0000000000..4b7a6dfc39 --- /dev/null +++ b/programming/library/component.xml @@ -0,0 +1,4 @@ + + programming.library + + diff --git a/programming/library/libbsd/actions.py b/programming/library/libbsd/actions.py new file mode 100644 index 0000000000..9d0211af78 --- /dev/null +++ b/programming/library/libbsd/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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def setup(): + autotools.configure("--disable-static \ + --disable-silent-rules") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + +# solve conflict with elfutils and glibc-devel +# pisitools.remove("/usr/include/nlist.h") +# pisitools.remove("/usr/lib/libbsd.a") + + pisitools.dodoc("ChangeLog", "COPYING", "README", "TODO") diff --git a/programming/library/libbsd/pspec.xml b/programming/library/libbsd/pspec.xml new file mode 100644 index 0000000000..047b6993d4 --- /dev/null +++ b/programming/library/libbsd/pspec.xml @@ -0,0 +1,49 @@ + + + libbsd + http://libbsd.freedesktop.org + + Marcin Bojara + marcin@pisilinux.org + + BSD + BSD-2 + BSD-4 + ISC + library + Provides useful functions commonly found on BSD systems + This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port projects with strong BSD origins, without needing to embed the same code over and over again on each project. + http://libbsd.freedesktop.org/releases/libbsd-0.6.0.tar.xz + + + + libbsd + + /usr/lib + /usr/share/doc + + + + + libbsd-devel + Development files for libbsd + + libbsd + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + + 2014-03-09 + 0.6.0 + Fisrt release. + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/programming/library/libbsd/translations.xml b/programming/library/libbsd/translations.xml new file mode 100644 index 0000000000..db67d1d785 --- /dev/null +++ b/programming/library/libbsd/translations.xml @@ -0,0 +1,8 @@ + + + + libbsd + Taşınabilirlik için BSD uyumlu fonksiyonlar sağlayan bir kitaplık. + GNU Linux sistemlerde bulunmayan BSD sistemlere özgü fonsiyonları barındıran bir kitaplıktır ve BSD uygulamalarının GNU Linux'a taşınmasını kolaylaştırır. + + \ No newline at end of file diff --git a/x11/library/libX11/actions.py b/x11/library/libX11/actions.py new file mode 100644 index 0000000000..4d41b1e29c --- /dev/null +++ b/x11/library/libX11/actions.py @@ -0,0 +1,26 @@ +# -*- 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(): + autotools.autoreconf("-vif") + autotools.configure("--disable-static") + + pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""') + pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE") + pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": return + + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") diff --git a/x11/library/libX11/files/fix-null-pointer.patch b/x11/library/libX11/files/fix-null-pointer.patch new file mode 100644 index 0000000000..8b37f365b5 --- /dev/null +++ b/x11/library/libX11/files/fix-null-pointer.patch @@ -0,0 +1,12 @@ +diff -Naur libX11-1.3.5//src/xlibi18n/ICWrap.c libX11-1.3.5.tpg//src/xlibi18n/ICWrap.c +--- libX11-1.3.5//src/xlibi18n/ICWrap.c 2010-08-10 04:59:44.000000000 +0000 ++++ libX11-1.3.5.tpg//src/xlibi18n/ICWrap.c 2010-09-17 17:11:21.000000000 +0000 +@@ -283,7 +283,7 @@ + XIMArg *args; + char *ret; + +- if (!ic->core.im) ++ if (!ic || !ic->core.im) + return (char *) NULL; + + /* diff --git a/x11/library/libX11/files/fix-segfault.diff b/x11/library/libX11/files/fix-segfault.diff new file mode 100644 index 0000000000..a38c0ce2a2 --- /dev/null +++ b/x11/library/libX11/files/fix-segfault.diff @@ -0,0 +1,50 @@ +Index: libX11-1.4.99.1/src/Xrm.c +=================================================================== +--- libX11-1.4.99.1.orig/src/Xrm.c ++++ libX11-1.4.99.1/src/Xrm.c +@@ -2540,30 +2540,40 @@ Bool XrmQGetResource( + VClosureRec closure; + + if (db && *names) { +- _XLockMutex(&db->linfo); ++ if ((_XLockMutex_fn) && db->linfo.lock ) { ++ _XLockMutex(&db->linfo); ++ } + closure.type = pType; + closure.value = pValue; + table = db->table; + if (names[1]) { + if (table && !table->leaf) { + if (GetNEntry(table, names, classes, &closure)) { +- _XUnlockMutex(&db->linfo); ++ if ((_XUnlockMutex_fn) && db->linfo.lock ) { ++ _XUnlockMutex(&db->linfo); ++ } + return True; + } + } else if (table && table->hasloose && + GetLooseVEntry((LTable)table, names, classes, &closure)) { +- _XUnlockMutex (&db->linfo); ++ if ((_XUnlockMutex_fn) && db->linfo.lock ) { ++ _XUnlockMutex (&db->linfo); ++ } + return True; + } + } else { + if (table && !table->leaf) + table = table->next; + if (table && GetVEntry((LTable)table, names, classes, &closure)) { +- _XUnlockMutex(&db->linfo); ++ if ((_XUnlockMutex_fn) && db->linfo.lock ) { ++ _XUnlockMutex(&db->linfo); ++ } + return True; + } + } +- _XUnlockMutex(&db->linfo); ++ if ((_XUnlockMutex_fn) && db->linfo.lock ) { ++ _XUnlockMutex(&db->linfo); ++ } + } + *pType = NULLQUARK; + pValue->addr = (XPointer)NULL; diff --git a/x11/library/libX11/files/fix_typo.diff b/x11/library/libX11/files/fix_typo.diff new file mode 100644 index 0000000000..a55a940744 --- /dev/null +++ b/x11/library/libX11/files/fix_typo.diff @@ -0,0 +1,27 @@ +From 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b Mon Sep 17 00:00:00 2001 +From: James Cloos +Date: Tue, 17 Sep 2013 16:50:42 +0000 +Subject: nls/en_US.UTF-8/Compose.pre: Fix typo. + +Fix typo added in 215ce6a67863, s/actute/acute/. + +Fixes bug #69476. Reported by Jean Krohn. + +Signed-off-by: James Cloos +--- +diff --git a/nls/en_US.UTF-8/Compose.pre b/nls/en_US.UTF-8/Compose.pre +index a741332..7314d7f 100644 +--- a/nls/en_US.UTF-8/Compose.pre ++++ b/nls/en_US.UTF-8/Compose.pre +@@ -743,7 +743,7 @@ XCOMM Part 3 + : "ï" idiaeresis # LATIN SMALL LETTER I WITH DIAERESIS + : "ï" idiaeresis # LATIN SMALL LETTER I WITH DIAERESIS + : "ï" idiaeresis # LATIN SMALL LETTER I WITH DIAERESIS +- : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301 ++ : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301 + : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301 + : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301 + : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301 +-- +cgit v0.9.0.2-2-gbebe + diff --git a/x11/library/libX11/pspec.xml b/x11/library/libX11/pspec.xml new file mode 100644 index 0000000000..562ee95894 --- /dev/null +++ b/x11/library/libX11/pspec.xml @@ -0,0 +1,128 @@ + + + + + libX11 + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + X.Org X11 library + Core X11 protocol client library. + mirrors://xorg/individual/lib/libX11-1.6.3.tar.bz2 + + libxcb-devel + xorg-proto + util-macros + xtrans + + + + + + + + libX11 + + libxcb + + + /usr/lib/libX11* + /usr/lib/X11 + /usr/share/X11 + /usr/share/doc/libX11 + + + + + libX11-devel + Development files for X11 library + + libX11 + libxcb-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + + libX11-32bit + emul32 + 32-bit shared libraries for libX11 + emul32 + + libxcb-32bit + glibc-32bit + + + libX11 + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + + 2015-05-22 + 1.6.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.6.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.6.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-24 + 1.5.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + diff --git a/x11/library/libX11/translations.xml b/x11/library/libX11/translations.xml new file mode 100644 index 0000000000..f7b669ffdf --- /dev/null +++ b/x11/library/libX11/translations.xml @@ -0,0 +1,19 @@ + + + + libX11 + X.Org X11 kitaplığı + Librairie X11 de X.Org. + X.Org X11 Bibliothek + + + + libX11-devel + libX11 için geliştirme dosyaları + + + + libX11-32bit + libX11 için 32-bit paylaşımlı kitaplıklar + + diff --git a/x11/library/libXau/actions.py b/x11/library/libXau/actions.py new file mode 100644 index 0000000000..1e2e53ca09 --- /dev/null +++ b/x11/library/libXau/actions.py @@ -0,0 +1,20 @@ +#!/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 shelltools + +def setup(): + autotools.autoreconf("-vif") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + diff --git a/x11/library/libXau/files/visibility.patch b/x11/library/libXau/files/visibility.patch new file mode 100644 index 0000000000..5a338a167f --- /dev/null +++ b/x11/library/libXau/files/visibility.patch @@ -0,0 +1,22 @@ +--- libXau-1.0.3/AuDispose.c.orig 2007-11-23 17:51:27.000000000 -0200 ++++ libXau-1.0.3/AuDispose.c 2007-11-23 17:51:34.000000000 -0200 +@@ -33,7 +33,7 @@ in this Software without prior written a + #include + #include + +-void ++_X_EXPORT void + XauDisposeAuth (Xauth *auth) + { + if (auth) { +--- libXau-1.0.3/AuRead.c.orig 2007-11-23 17:52:14.000000000 -0200 ++++ libXau-1.0.3/AuRead.c 2007-11-23 17:52:21.000000000 -0200 +@@ -69,7 +69,7 @@ read_counted_string (unsigned short *cou + return 1; + } + +-Xauth * ++_X_EXPORT Xauth * + XauReadAuth (FILE *auth_file) + { + Xauth local; diff --git a/x11/library/libXau/pspec.xml b/x11/library/libXau/pspec.xml new file mode 100644 index 0000000000..f9637721c4 --- /dev/null +++ b/x11/library/libXau/pspec.xml @@ -0,0 +1,92 @@ + + + + + libXau + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + X.Org Au library + libXau provides functions to manage X authorization files + http://xorg.freedesktop.org/archive/individual/lib/libXau-1.0.8.tar.gz + + visibility.patch + + + util-macros + xorg-proto + + + + + libXau + + /usr/lib + + + + + libXau-devel + Development files for libXau + + libXau + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + + libXau-32bit + emul32 + 32-bit shared libraries for libXau + emul32 + + glibc-32bit + + + glibc-32bit + + + /usr/lib32 + + + + + + 2014-06-01 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-06-21 + 1.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-23 + 1.0.7 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/x11/library/libXau/translations.xml b/x11/library/libXau/translations.xml new file mode 100644 index 0000000000..a48e44827f --- /dev/null +++ b/x11/library/libXau/translations.xml @@ -0,0 +1,20 @@ + + + + libXau + X.Org Au kitaplığı. + Librairie Au de X.Org. + X.Org Au Bibliothek + libXau, X yetkilendirme dosyalarını yönetmek için işlevler sağlar. + + + + libXau-devel + libXau için geliştirme dosyaları + + + + libXau-32bit + libXau için 32-bit paylaşımlı kitaplıklar + + diff --git a/x11/library/libXdmcp/actions.py b/x11/library/libXdmcp/actions.py new file mode 100644 index 0000000000..97397e5869 --- /dev/null +++ b/x11/library/libXdmcp/actions.py @@ -0,0 +1,22 @@ +# -*- 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("-fi") + + autotools.configure("--disable-static \ + --without-xmlto") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README") diff --git a/x11/library/libXdmcp/pspec.xml b/x11/library/libXdmcp/pspec.xml new file mode 100644 index 0000000000..f37ee24f0e --- /dev/null +++ b/x11/library/libXdmcp/pspec.xml @@ -0,0 +1,104 @@ + + + + + libXdmcp + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + X.Org Xdmcp library + LibXdmcp is the X Display Manager Control Protocol library. + http://xorg.freedesktop.org/archive/individual/lib/libXdmcp-1.1.2.tar.bz2 + + libxslt + util-macros + xorg-proto + libbsd-devel + + + + + libXdmcp + + libbsd + + + /usr/lib + /usr/share/doc + + + + + libXdmcp-devel + Development files for libXdmcp + + xorg-proto + libXdmcp + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/*/*.xml + + + + + libXdmcp-32bit + emul32 + 32-bit shared libraries for libXdmcp + emul32 + + glibc-32bit + + + libXdmcp + glibc-32bit + + + /usr/lib32 + + + + + + 2015-06-06 + 1.1.2 + Runtime dep fixed. + Osman Erkan + osman.erkan@yandex.com + + + 2015-05-22 + 1.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-08 + 1.1.1 + Rebuild, clean actions.py. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-23 + 1.1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/x11/library/libXdmcp/translations.xml b/x11/library/libXdmcp/translations.xml new file mode 100644 index 0000000000..7eb6f7572d --- /dev/null +++ b/x11/library/libXdmcp/translations.xml @@ -0,0 +1,20 @@ + + + + libXdmcp + X.Org Xdmcp kitaplığı. + Librairie Xdmcp de X.Org. + X.Org Xdmcp Bibliothek + LibXdmcp, X Ekran Yöneticisi Denetim Protokolü kitaplığıdır. + + + + libXdmcp-devel + libXdmcp için geliştirme dosyaları + + + + libXdmcp-32bit + libXdmcp için 32-bit paylaşımlı kitaplıklar + + diff --git a/x11/library/libxcb/actions.py b/x11/library/libxcb/actions.py new file mode 100644 index 0000000000..bfab6647d2 --- /dev/null +++ b/x11/library/libxcb/actions.py @@ -0,0 +1,30 @@ +# -*- 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(): + pisitools.flags.add("-DNDEBUG") + + autotools.autoreconf("-vif") + autotools.configure("--disable-static \ + --enable-xevie \ + --enable-xprint \ + --enable-xinput \ + --enable-xkb \ + --without-launchd \ + --without-doxygen") + + pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("-j1 DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("COPYING", "NEWS", "README") diff --git a/x11/library/libxcb/files/libxcb-1.1-no-pthread-stubs.patch b/x11/library/libxcb/files/libxcb-1.1-no-pthread-stubs.patch new file mode 100644 index 0000000000..84c7f8e2fb --- /dev/null +++ b/x11/library/libxcb/files/libxcb-1.1-no-pthread-stubs.patch @@ -0,0 +1,11 @@ +--- libxcb-1.8.1/configure.ac 2012-03-09 15:38:38.000000000 +0100 ++++ libxcb-1.8.1/configure.ac.new 2012-03-09 16:50:40.107109896 +0100 +@@ -43,7 +43,7 @@ + + # Checks for pkg-config packages + PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.11) +-NEEDED="pthread-stubs xau >= 0.99.2" ++NEEDED="xau >= 0.99.2" + PKG_CHECK_MODULES(NEEDED, $NEEDED) + + have_xdmcp="no" diff --git a/x11/library/libxcb/files/pthread-stubs.pc b/x11/library/libxcb/files/pthread-stubs.pc new file mode 100644 index 0000000000..ad7b91b632 --- /dev/null +++ b/x11/library/libxcb/files/pthread-stubs.pc @@ -0,0 +1,8 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=${exec_prefix}/lib + +Name: pthread stubs +Description: Stubs missing from libc for standard pthread functions +Version: 0.3 +Libs: diff --git a/x11/library/libxcb/pspec.xml b/x11/library/libxcb/pspec.xml new file mode 100644 index 0000000000..48357b1ebd --- /dev/null +++ b/x11/library/libxcb/pspec.xml @@ -0,0 +1,125 @@ + + + + + libxcb + http://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + The X protocol C-language Binding (XCB) + The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. + http://xcb.freedesktop.org/dist/libxcb-1.11.tar.bz2 + + libXau-devel + libXdmcp-devel + libxslt + util-macros + xcb-proto + + + libxcb-1.1-no-pthread-stubs.patch + + + + + libxcb + + libXau + libXdmcp + glibc + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + libxcb-devel + Development files for libxcb + + libxcb + libXau-devel + libXdmcp-devel + + + /usr/include/xcb + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + pthread-stubs.pc + + + + + libxcb-32bit + emul32 + 32-bit shared libraries for libxcb + emul32 + + libXau-32bit + libXdmcp-32bit + glibc-32bit + + + libxcb + libXau-32bit + libXdmcp-32bit + glibc-32bit + + + /usr/lib32 + + + + + + 2015-05-22 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 1.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-08 + 1.9.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-28 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-18 + 1.9 + First release + Erdinç Gültekin + admins@pisilinux.org + + + diff --git a/x11/library/libxcb/translations.xml b/x11/library/libxcb/translations.xml new file mode 100644 index 0000000000..d1bf19d273 --- /dev/null +++ b/x11/library/libxcb/translations.xml @@ -0,0 +1,17 @@ + + + + libxcb + X protokolü için C dili bağlayıcısı (XCB) + + + + libxcb-devel + libxcb için geliştirme dosyaları + + + + libxcb-32bit + libxcb için 32-bit paylaşımlı kitaplıklar + +