diff --git a/multimedia/misc/sdl2-net/actions.py b/multimedia/misc/sdl2-net/actions.py
new file mode 100644
index 0000000000..700a889fbd
--- /dev/null
+++ b/multimedia/misc/sdl2-net/actions.py
@@ -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
+
+WorkDir = "SDL2_net-%s" % get.srcVERSION()
+
+def setup():
+ autotools.configure("--disable-static")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.dodoc("CHANGES.txt", "COPYING.txt", "README.txt")
diff --git a/multimedia/misc/sdl2-net/pspec.xml b/multimedia/misc/sdl2-net/pspec.xml
new file mode 100644
index 0000000000..8e3182be5c
--- /dev/null
+++ b/multimedia/misc/sdl2-net/pspec.xml
@@ -0,0 +1,54 @@
+
+
+
+
+ sdl2-net
+ http://www.libsdl.org/projects/SDL_net/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ SDL network library 2.0 series
+ sdl-mixer is a SDL library for network access.
+ http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz
+
+ libsdl2-devel
+
+
+
+
+ sdl2-net
+
+ libsdl2
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ sdl2-net-devel
+ Development files for sdl-net
+
+ sdl2-net
+ libsdl2-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2016-04-11
+ 2.0.1
+ First release
+ Mathias Freire
+ mathiasfreire45@gmail.com
+
+
+
\ No newline at end of file
diff --git a/multimedia/misc/sdl2-net/translations.xml b/multimedia/misc/sdl2-net/translations.xml
new file mode 100644
index 0000000000..3097dfaf29
--- /dev/null
+++ b/multimedia/misc/sdl2-net/translations.xml
@@ -0,0 +1,14 @@
+
+
+
+ sdl2-net
+ SDL ağ kütüphanesi 2.0 serisi
+ Librairie réseau de SDL.
+ sdl-net, SDL için ağ erişim kitaplığıdır.
+
+
+
+ sdl2-net-devel
+ sdl2-net için geliştirme dosyaları
+
+
\ No newline at end of file
diff --git a/multimedia/misc/sdl2-ttf/actions.py b/multimedia/misc/sdl2-ttf/actions.py
new file mode 100644
index 0000000000..61898a8d86
--- /dev/null
+++ b/multimedia/misc/sdl2-ttf/actions.py
@@ -0,0 +1,39 @@
+#!/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
+from pisi.actionsapi import get
+
+WorkDir = "SDL2_ttf-%s" % get.srcVERSION()
+
+def setup():
+ options = "--disable-dependency-tracking \
+ --disable-static \
+ --with-x"
+
+ if get.buildTYPE() == "emul32":
+ #options += " --prefix=/emul32 \
+ options += " --includedir=/usr/include \
+ --libdir=/usr/lib32"
+
+ shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
+ shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
+ shelltools.export("CXXFLAGS", "%s -m32" % get.CXXFLAGS())
+ shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
+
+ autotools.configure(options)
+
+def build():
+ pisitools.dosed("Makefile", "-lz -lbz2", "")
+
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("CHANGES.txt", "COPYING.txt", "README.txt")
diff --git a/multimedia/misc/sdl2-ttf/pspec.xml b/multimedia/misc/sdl2-ttf/pspec.xml
new file mode 100644
index 0000000000..139520fc90
--- /dev/null
+++ b/multimedia/misc/sdl2-ttf/pspec.xml
@@ -0,0 +1,80 @@
+
+
+
+
+ sdl2-ttf
+ http://www.libsdl.org/projects/SDL_ttf/
+
+ Mathias Freire
+ mathiasfreire45@gmail.com
+
+ LGPLv2.1
+ library
+ TrueType font support for SDL2
+ SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable.
+ http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz
+
+ libsdl2-devel
+ freetype-devel
+
+
+
+
+ sdl2-ttf
+
+ libsdl2
+ harfbuzz
+ freetype
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ sdl2-ttf-devel
+ Development files for sdl2-ttf
+
+ libsdl2-devel
+ sdl2-ttf
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig
+
+
+
+
+ sdl2-ttf-32bit
+ emul32
+ 32-bit shared libraries for sdl2-ttf
+ emul32
+
+ libsdl2-32bit
+ freetype-32bit
+
+
+ glibc-32bit
+ libpng-32bit
+ libsdl2-32bit
+ harfbuzz-32bit
+ freetype-32bit
+ sdl2-ttf
+
+
+ /usr/lib32/
+
+
+
+
+
+ 2016-04-11
+ 2.0.14
+ First release
+ Mathias Freire
+ mathiasfreire45@gmail.com
+
+
+
\ No newline at end of file
diff --git a/multimedia/misc/sdl2-ttf/translations.xml b/multimedia/misc/sdl2-ttf/translations.xml
new file mode 100644
index 0000000000..5f2b62b1f6
--- /dev/null
+++ b/multimedia/misc/sdl2-ttf/translations.xml
@@ -0,0 +1,20 @@
+
+
+
+ sdl2-ttf
+ SDL2 TTF kitaplığı
+ SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır.
+ SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle.
+ SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable.
+
+
+
+ sdl2-ttf-devel
+ sdl2-ttf için geliştirme dosyaları
+
+
+
+ sdl2-ttf-32bit
+ sdl2-ttf için 32-bit paylaşımlı kitaplıklar
+
+
\ No newline at end of file
diff --git a/pisi-index.xml b/pisi-index.xml
index e47d91ad30..cb3daf02bc 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -6644,6 +6644,61 @@
+
+
+ sdl2-net
+ http://www.libsdl.org/projects/SDL_net/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ multimedia.misc
+ Librairie réseau de SDL.
+ SDL network library 2.0 series
+ SDL ağ kütüphanesi 2.0 serisi
+ sdl-mixer is a SDL library for network access.
+ sdl-net, SDL için ağ erişim kitaplığıdır.
+ http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz
+
+ libsdl2-devel
+
+ multimedia/misc/sdl2-net/pspec.xml
+
+
+ sdl2-net
+
+ libsdl2
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ sdl2-net-devel
+ Development files for sdl-net
+ sdl2-net için geliştirme dosyaları
+
+ sdl2-net
+ libsdl2-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2016-04-11
+ 2.0.1
+ First release
+ Mathias Freire
+ mathiasfreire45@gmail.com
+
+
+
libbluray
@@ -7126,6 +7181,88 @@
+
+
+ sdl2-ttf
+ http://www.libsdl.org/projects/SDL_ttf/
+
+ Mathias Freire
+ mathiasfreire45@gmail.com
+
+ LGPLv2.1
+ library
+ multimedia.misc
+ TrueType font support for SDL2
+ SDL2 TTF kitaplığı
+ SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle.
+ SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable.
+ SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır.
+ SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable.
+ http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz
+
+ libsdl2-devel
+ freetype-devel
+
+ multimedia/misc/sdl2-ttf/pspec.xml
+
+
+ sdl2-ttf
+
+ libsdl2
+ harfbuzz
+ freetype
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ sdl2-ttf-devel
+ Development files for sdl2-ttf
+ sdl2-ttf için geliştirme dosyaları
+
+ libsdl2-devel
+ sdl2-ttf
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig
+
+
+
+ sdl2-ttf-32bit
+ 32-bit shared libraries for sdl2-ttf
+ sdl2-ttf için 32-bit paylaşımlı kitaplıklar
+ emul32
+ emul32
+
+ libsdl2-32bit
+ freetype-32bit
+
+
+ glibc-32bit
+ libpng-32bit
+ libsdl2-32bit
+ harfbuzz-32bit
+ freetype-32bit
+ sdl2-ttf
+
+
+ /usr/lib32/
+
+
+
+
+ 2016-04-11
+ 2.0.14
+ First release
+ Mathias Freire
+ mathiasfreire45@gmail.com
+
+
+
libdvdcss
@@ -77664,6 +77801,60 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
+
+
+ physfs
+ http://icculus.org/physfs/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ ZLIB
+ library
+ programming.misc
+ Filesystem library
+ Dosya sistemi kitaplığı
+ Warstwa abstrakcji plików dla gier
+ Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux.
+ Abstraction layer for filesystems.
+ physfs dosya sistemi katmanı kitaplığıdır.
+ Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos
+ PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów.
+ http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2
+
+ cmake
+ zlib
+
+ programming/misc/physfs/pspec.xml
+
+
+ physfs
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ physfs-devel
+ Development files for physfs
+ physfs için geliştirme dosyaları
+
+ physfs
+
+
+ /usr/include
+
+
+
+
+ 2016-04-11
+ 2.0.3
+ First release
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
libinput
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index ec53ee6c57..fd1814219b 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-6513d28c1229775dc5e6add178e0c25b96e0d78b
\ No newline at end of file
+83593e89d34153f68bfcfbf20dd86044720a1094
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index b0ba319465..77b0e91829 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index 87653fb6f9..0f12f3535d 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-52923847fa17ad43164c4e44febcea98bd09bd65
\ No newline at end of file
+6050b90dcca8260458c1e680f65a878f6acf9a59
\ No newline at end of file
diff --git a/programming/misc/physfs/actions.py b/programming/misc/physfs/actions.py
new file mode 100644
index 0000000000..bee0aa2fd4
--- /dev/null
+++ b/programming/misc/physfs/actions.py
@@ -0,0 +1,28 @@
+#!/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 cmaketools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+
+def setup():
+ cmaketools.configure("-DPHYSFS_BUILD_STATIC=OFF \
+ -DPHYSFS_BUILD_SHARED=ON \
+ -DPHYSFS_ARCHIVE_7Z=OFF \
+ -DPHYSFS_BUILD_TEST=OFF \
+ -DPHYSFS_BUILD_WX_TEST=OFF \
+ -DPHYSFS_INTERNAL_ZLIB=OFF \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr ")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.rawInstall('DESTDIR="%s"' % get.installDIR())
+
+ pisitools.dodoc("CHANGELOG.txt", "CREDITS.txt", "TODO.txt")
diff --git a/programming/misc/physfs/pspec.xml b/programming/misc/physfs/pspec.xml
new file mode 100644
index 0000000000..f60035f24e
--- /dev/null
+++ b/programming/misc/physfs/pspec.xml
@@ -0,0 +1,50 @@
+
+
+
+
+ physfs
+ http://icculus.org/physfs/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ ZLIB
+ library
+ Filesystem library
+ Abstraction layer for filesystems.
+ http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2
+
+ cmake
+ zlib
+
+
+
+
+ physfs
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ physfs-devel
+ Development files for physfs
+
+ physfs
+
+
+ /usr/include
+
+
+
+
+
+ 2016-04-11
+ 2.0.3
+ First release
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/programming/misc/physfs/translations.xml b/programming/misc/physfs/translations.xml
new file mode 100644
index 0000000000..f2d949f70b
--- /dev/null
+++ b/programming/misc/physfs/translations.xml
@@ -0,0 +1,17 @@
+
+
+
+ physfs
+ Dosya sistemi kitaplığı
+ Warstwa abstrakcji plików dla gier
+ physfs dosya sistemi katmanı kitaplığıdır.
+ Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux.
+ Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos
+ PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów.
+
+
+
+ physfs-devel
+ physfs için geliştirme dosyaları
+
+