diff --git a/x11/driver/component.xml b/x11/driver/component.xml
new file mode 100644
index 0000000000..75a7c4fae6
--- /dev/null
+++ b/x11/driver/component.xml
@@ -0,0 +1,3 @@
+
+ x11.driver
+
diff --git a/x11/driver/libva-intel-driver/actions.py b/x11/driver/libva-intel-driver/actions.py
new file mode 100644
index 0000000000..e4c38beb13
--- /dev/null
+++ b/x11/driver/libva-intel-driver/actions.py
@@ -0,0 +1,24 @@
+# -*- 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():
+ pisitools.dosed("configure.ac", "gen4asm=yes", "gen4asm=no")
+ autotools.autoreconf("-vif")
+ autotools.configure("\
+ --disable-silent-rules \
+ --disable-wayland \
+ ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("COPYING")
diff --git a/x11/driver/libva-intel-driver/pspec.xml b/x11/driver/libva-intel-driver/pspec.xml
new file mode 100644
index 0000000000..061e094097
--- /dev/null
+++ b/x11/driver/libva-intel-driver/pspec.xml
@@ -0,0 +1,80 @@
+
+
+
+
+ libva-intel-driver
+ http://freedesktop.org/wiki/Software/vaapi
+
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+ MIT
+ driver
+ VA-API implementation for Intel G45 and HD Graphics family
+ libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family.
+ http://freedesktop.org/software/vaapi/releases/libva-intel-driver/libva-intel-driver-1.5.1.tar.bz2
+
+ libdrm-devel
+ libX11-devel
+ libva-devel
+
+
+
+
+ libva-intel-driver
+
+ libdrm
+ libdrm-intel
+ libva
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+
+ 2015-05-08
+ 1.5.1
+ Version bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2015-01-21
+ 1.5.0
+ Version bump.
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+
+ 2014-09-01
+ 1.3.2
+ Version bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-05-16
+ 1.3.1
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-05-16
+ 1.3.1
+ Version bump
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2014-04-23
+ 1.3.0
+ First release
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+
diff --git a/x11/driver/libva-intel-driver/translations.xml b/x11/driver/libva-intel-driver/translations.xml
new file mode 100644
index 0000000000..3c110c249e
--- /dev/null
+++ b/x11/driver/libva-intel-driver/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ libva-intel-driver
+ VA-API implementation for Intel G45 and HD Graphics family
+ libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family.
+
+
diff --git a/x11/driver/vdpau-video/actions.py b/x11/driver/vdpau-video/actions.py
new file mode 100644
index 0000000000..75a248ed60
--- /dev/null
+++ b/x11/driver/vdpau-video/actions.py
@@ -0,0 +1,24 @@
+# -*- 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
+
+def setup():
+ pisitools.dosed("configure.ac", "AM_CONFIG_HEADER", "AC_CONFIG_HEADERS")
+ autotools.autoreconf("-fiv")
+
+ autotools.configure()
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")
diff --git a/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-drop-h264-api.patch b/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-drop-h264-api.patch
new file mode 100644
index 0000000000..91f9ccb153
--- /dev/null
+++ b/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-drop-h264-api.patch
@@ -0,0 +1,12 @@
+diff -Naur libva-vdpau-driver-0.7.4.old/src/vdpau_dump.c libva-vdpau-driver-0.7.4/src/vdpau_dump.c
+--- libva-vdpau-driver-0.7.4.old/src/vdpau_dump.c 2013-07-31 10:27:40.413324916 +0200
++++ libva-vdpau-driver-0.7.4/src/vdpau_dump.c 2013-07-31 10:28:12.386040595 +0200
+@@ -59,8 +59,6 @@
+ _(VAEncSequenceParameterBufferType);
+ _(VAEncPictureParameterBufferType);
+ _(VAEncSliceParameterBufferType);
+- _(VAEncH264VUIBufferType);
+- _(VAEncH264SEIBufferType);
+ #endif
+ #if VA_CHECK_VERSION(0,31,1)
+ _(VAQMatrixBufferType);
diff --git a/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-glext-85.patch b/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-glext-85.patch
new file mode 100644
index 0000000000..ff34025dce
--- /dev/null
+++ b/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-glext-85.patch
@@ -0,0 +1,30 @@
+From dd3e1e53a0c083c4dc16f3db4083ad5e4b7a866e Mon Sep 17 00:00:00 2001
+From: Nicolas Chauvet
+Date: Fri, 11 Jan 2013 21:04:40 +0100
+Subject: [PATCH] Fix libva-vdpau-driver with GL_GLEXT_VERSION >= 85
+
+---
+ src/utils_glx.h | 7 +++++++
+ 1 file changed, 7 insertions(+)
+
+diff --git a/src/utils_glx.h b/src/utils_glx.h
+index 19d03e4..42ae06f 100644
+--- a/src/utils_glx.h
++++ b/src/utils_glx.h
+@@ -67,6 +67,13 @@ typedef void (*PFNGLXRELEASETEXIMAGEEXTPROC)(Display *, GLXDrawable, int);
+ #define GL_PROGRAM_UNDER_NATIVE_LIMITS GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB
+ #endif
+
++#if GL_GLEXT_VERSION >= 85
++/* XXX: PFNGLMULTITEXCOORD2FPROC got out of the GL_VERSION_1_3_DEPRECATED
++ * block and is not defined if GL_VERSION_1_3 is defined in
++ * Redefine the type here as an interim solution */
++typedef void (*PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t);
++#endif
++
+ const char *
+ gl_get_error_string(GLenum error)
+ attribute_hidden;
+--
+1.7.11.7
+
diff --git a/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-libvdpau-0.8.patch b/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-libvdpau-0.8.patch
new file mode 100644
index 0000000000..6d6d47ad0b
--- /dev/null
+++ b/x11/driver/vdpau-video/files/libva-vdpau-driver-0.7.4-libvdpau-0.8.patch
@@ -0,0 +1,13 @@
+http://bugs.gentoo.org/517778
+
+--- src/vdpau_decode.c
++++ src/vdpau_decode.c
+@@ -1289,7 +1289,7 @@
+ driver_data,
+ obj_context->vdp_decoder,
+ obj_surface->vdp_surface,
+- (VdpPictureInfo)&obj_context->vdp_picture_info,
++ (VdpPictureInfo *)&obj_context->vdp_picture_info,
+ obj_context->vdp_bitstream_buffers_count,
+ obj_context->vdp_bitstream_buffers
+ );
diff --git a/x11/driver/vdpau-video/pspec.xml b/x11/driver/vdpau-video/pspec.xml
new file mode 100644
index 0000000000..b7d3b80c9a
--- /dev/null
+++ b/x11/driver/vdpau-video/pspec.xml
@@ -0,0 +1,114 @@
+
+
+
+
+ vdpau-video
+ http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ driver
+ VDPAU backend for VA API
+ vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards.
+ http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2
+
+ libvdpau-devel
+ libva-devel
+ mesa-devel
+ libX11-devel
+
+
+ libva-vdpau-driver-0.7.4-libvdpau-0.8.patch
+ libva-vdpau-driver-0.7.4-glext-85.patch
+ libva-vdpau-driver-0.7.4-drop-h264-api.patch
+
+
+
+
+ vdpau-video
+
+ libX11
+ libvdpau
+ mesa
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+
+ 2015-05-08
+ 0.7.4
+ Release bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2015-01-22
+ 0.7.4
+ Rebuild for xorg-server-1.16.3
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+
+ 2014-09-01
+ 0.7.4
+ Rebuild for xorg-server-1.16.0 and libvdpau-0.8
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-05-16
+ 0.7.4
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-03-08
+ 0.7.4
+ Rebuild for xserver 1.15
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2014-02-08
+ 0.7.4
+ Rebuild Unused
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-11-06
+ 0.7.4
+ Fix deps.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2013-08-25
+ 0.7.4
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2013-05-29
+ 0.7.4
+ build for xorg 1.14
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2012-10-11
+ 0.7.4
+ First release
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
diff --git a/x11/driver/vdpau-video/translations.xml b/x11/driver/vdpau-video/translations.xml
new file mode 100644
index 0000000000..3d44ae6588
--- /dev/null
+++ b/x11/driver/vdpau-video/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ vdpau-video
+ VA API için VDPAU arka ucu
+ vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur.
+
+
diff --git a/x11/driver/xorg-input-acecad/actions.py b/x11/driver/xorg-input-acecad/actions.py
new file mode 100644
index 0000000000..33d3751a6d
--- /dev/null
+++ b/x11/driver/xorg-input-acecad/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/copyleft/gpl.txt.
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.autoreconf("-fiv")
+ autotools.configure("\
+ --disable-static \
+ --disable-silent-rules \
+ ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.dodoc("COPYING", "ChangeLog", "README")
diff --git a/x11/driver/xorg-input-acecad/files/assign-local-private-after-allocating.patch b/x11/driver/xorg-input-acecad/files/assign-local-private-after-allocating.patch
new file mode 100644
index 0000000000..e3e635a6f3
--- /dev/null
+++ b/x11/driver/xorg-input-acecad/files/assign-local-private-after-allocating.patch
@@ -0,0 +1,24 @@
+From ec2c4ead497133ef20d5ef5a9b481b38e1e0f7a2 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer
+Date: Mon, 27 Jun 2011 03:13:54 +0000
+Subject: Assign local->private after allocating.
+
+It is detrimental to the user experience when the driver tries to derefernce
+null pointers.
+
+Signed-off-by: Peter Hutterer
+---
+diff --git a/src/acecad.c b/src/acecad.c
+index ad6d793..604fe91 100644
+--- a/src/acecad.c
++++ b/src/acecad.c
+@@ -343,6 +343,7 @@ AceCadPreInit(InputDriverPtr drv, InputInfoPtr local, int flags)
+ return BadAlloc;
+
+ memset(priv, 0, sizeof(AceCadPrivateRec));
++ local->private = priv;
+
+ local->device_control = DeviceControl;
+
+--
+cgit v0.8.3-6-g21f6
diff --git a/x11/driver/xorg-input-acecad/pspec.xml b/x11/driver/xorg-input-acecad/pspec.xml
new file mode 100644
index 0000000000..32c722d242
--- /dev/null
+++ b/x11/driver/xorg-input-acecad/pspec.xml
@@ -0,0 +1,90 @@
+
+
+
+
+ xorg-input-acecad
+ http://www.x.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MIT
+ driver
+ X.Org acecad tablet input driver
+ xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about.
+ mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2
+
+ xorg-server-devel
+ libmtdev-devel
+ sysfsutils-devel
+ util-macros
+
+
+ assign-local-private-after-allocating.patch
+
+
+
+
+ xorg-input-acecad
+
+ xorg-server
+ libmtdev
+ sysfsutils
+
+
+ /usr/lib/xorg
+ /usr/share/doc
+ /usr/share/man
+
+
+
+
+ xorg-input-acecad-devel
+ Development files for ececad driver
+
+ xorg-input-acecad
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-05-08
+ 1.5.0
+ Release bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2015-01-22
+ 1.5.0
+ Rebuild for xorg-server-1.16.3
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+
+ 2014-09-01
+ 1.5.0
+ Rebuild for xorg-server-1.16.0
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-05-16
+ 1.5.0
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-03-08
+ 1.5.0
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
diff --git a/x11/driver/xorg-input-acecad/translations.xml b/x11/driver/xorg-input-acecad/translations.xml
new file mode 100644
index 0000000000..e6068a8765
--- /dev/null
+++ b/x11/driver/xorg-input-acecad/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ xorg-input-acecad
+ X.Org acecad tablet giriş aygıtı sürücüsü
+ xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler.
+
+
+
+ xorg-input-acecad-devel
+ acecad sürücüsü için geliştirme dosyaları
+
+
diff --git a/x11/driver/xorg-input-aiptek/actions.py b/x11/driver/xorg-input-aiptek/actions.py
new file mode 100644
index 0000000000..33d3751a6d
--- /dev/null
+++ b/x11/driver/xorg-input-aiptek/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/copyleft/gpl.txt.
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.autoreconf("-fiv")
+ autotools.configure("\
+ --disable-static \
+ --disable-silent-rules \
+ ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.dodoc("COPYING", "ChangeLog", "README")
diff --git a/x11/driver/xorg-input-aiptek/pspec.xml b/x11/driver/xorg-input-aiptek/pspec.xml
new file mode 100644
index 0000000000..52c21a490a
--- /dev/null
+++ b/x11/driver/xorg-input-aiptek/pspec.xml
@@ -0,0 +1,73 @@
+
+
+
+
+ xorg-input-aiptek
+ http://www.x.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MIT
+ driver
+ X.Org Aiptek USB Digital Tablet input driver
+ xorg-input-aiptek contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about.
+ mirrors://xorg/individual/driver/xf86-input-aiptek-1.4.1.tar.bz2
+
+ libX11-devel
+ libmtdev-devel
+ util-macros
+
+
+
+
+ xorg-input-aiptek
+
+ xorg-server
+ libmtdev
+
+
+ /usr/lib/xorg
+ /usr/share/doc
+ /usr/share/man
+
+
+
+
+
+ 2015-05-08
+ 1.4.1
+ Release bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2015-01-22
+ 1.4.1
+ Rebuild for xorg-server-1.16.3
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+
+ 2014-09-01
+ 1.4.1
+ Rebuild for xorg-server-1.16.0
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-05-16
+ 1.4.1
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-03-08
+ 1.4.1
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
diff --git a/x11/driver/xorg-input-aiptek/translations.xml b/x11/driver/xorg-input-aiptek/translations.xml
new file mode 100644
index 0000000000..96bc0faca1
--- /dev/null
+++ b/x11/driver/xorg-input-aiptek/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ xorg-input-aiptek
+ X.Org aiptek Dijital Tablet giriş aygıtı sürücüsü
+ xorg-input-aiptek, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler.
+
+
diff --git a/x11/driver/xorg-input-elographics/actions.py b/x11/driver/xorg-input-elographics/actions.py
new file mode 100644
index 0000000000..33d3751a6d
--- /dev/null
+++ b/x11/driver/xorg-input-elographics/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/copyleft/gpl.txt.
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.autoreconf("-fiv")
+ autotools.configure("\
+ --disable-static \
+ --disable-silent-rules \
+ ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.dodoc("COPYING", "ChangeLog", "README")
diff --git a/x11/driver/xorg-input-elographics/pspec.xml b/x11/driver/xorg-input-elographics/pspec.xml
new file mode 100644
index 0000000000..96e4ca24f1
--- /dev/null
+++ b/x11/driver/xorg-input-elographics/pspec.xml
@@ -0,0 +1,73 @@
+
+
+
+
+ xorg-input-elographics
+ http://www.x.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MIT
+ driver
+ X.Org Elographics TouchScreen input driver
+ xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about.
+ mirrors://xorg/individual/driver/xf86-input-elographics-1.4.1.tar.bz2
+
+ xorg-server-devel
+ libmtdev-devel
+ util-macros
+
+
+
+
+ xorg-input-elographics
+
+ xorg-server
+ libmtdev
+
+
+ /usr/lib/xorg
+ /usr/share/doc
+ /usr/share/man
+
+
+
+
+
+ 2015-05-08
+ 1.4.1
+ Release bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2015-01-22
+ 1.4.1
+ Rebuild for xorg-server-1.16.3
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+
+ 2014-09-01
+ 1.4.1
+ Rebuild for xorg-server-1.16.0
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-05-16
+ 1.4.1
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2014-03-09
+ 1.4.1
+ First release
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+
diff --git a/x11/driver/xorg-input-elographics/translations.xml b/x11/driver/xorg-input-elographics/translations.xml
new file mode 100644
index 0000000000..2e88d09ca2
--- /dev/null
+++ b/x11/driver/xorg-input-elographics/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ xorg-input-elographics
+ X.Org Elographics dokunmatik ekran sürücüsü
+ xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir.
+
+
diff --git a/x11/library/libva/actions.py b/x11/library/libva/actions.py
new file mode 100644
index 0000000000..fcaae9b387
--- /dev/null
+++ b/x11/library/libva/actions.py
@@ -0,0 +1,24 @@
+# -*- 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("--enable-glx \
+ --enable-wayland \
+ --disable-static")
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("COPYING")
diff --git a/x11/library/libva/pspec.xml b/x11/library/libva/pspec.xml
new file mode 100644
index 0000000000..02eef20323
--- /dev/null
+++ b/x11/library/libva/pspec.xml
@@ -0,0 +1,143 @@
+
+
+
+
+ libva
+ http://www.freedesktop.org/wiki/Software/vaapi
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MIT
+ library
+ Video Acceleration (VA) API for Linux
+ libva is a library providing the VA API video acceleration API.
+ http://www.freedesktop.org/software/vaapi/releases/libva/libva-1.5.1.tar.bz2
+
+ libdrm-devel
+ libXext-devel
+ libXfixes-devel
+ mesa-devel
+ wayland-devel
+
+
+
+
+ libva
+
+ libX11
+ libdrm
+ libXext
+ libXfixes
+ mesa
+ wayland-client
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ libva-devel
+ Development files for libva
+
+ libva
+ wayland-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig
+
+
+
+
+ libva-32bit
+ emul32
+ 32-bit shared libraries for libva
+ emul32
+
+ libdrm-32bit
+ wayland-32bit
+ libXext-32bit
+ libXfixes-32bit
+ mesa-32bit
+ libX11-32bit
+ glibc-32bit
+
+
+ libva
+ libdrm-32bit
+ wayland-32bit
+ libXext-32bit
+ libXfixes-32bit
+ libX11-32bit
+ mesa-32bit
+ glibc-32bit
+
+
+ /usr/lib32
+
+
+
+
+
+ 2015-05-10
+ 1.5.1
+ Version bump
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2015-01-21
+ 1.5.0
+ Version bump
+ Ergün Salman
+ poyraz76@pisilinux.org
+
+
+ 2014-05-16
+ 1.3.1
+ Version bump
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2014-04-23
+ 1.3.0
+ Version bump
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+ 2014-02-20
+ 1.2.1
+ Rebuild Unused
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-10-07
+ 1.2.1
+ Version bump, clean actions.py.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2013-08-25
+ 1.1.0
+ Release bump.
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+ 2012-10-10
+ 1.1.0
+ First release
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
diff --git a/x11/library/libva/translations.xml b/x11/library/libva/translations.xml
new file mode 100644
index 0000000000..fd81a88a9d
--- /dev/null
+++ b/x11/library/libva/translations.xml
@@ -0,0 +1,18 @@
+
+
+
+ libva
+ Linux için video hızlandırma API'si
+ libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır.
+
+
+
+ libva-devel
+ libva için geliştirme dosyaları
+
+
+
+ libva-32bit
+ libva için 32-bit paylaşımlı kitaplıklar
+
+