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..f3a7022df7 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
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index ec53ee6c57..29c076664d 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-6513d28c1229775dc5e6add178e0c25b96e0d78b
\ No newline at end of file
+a23b34fad7a942efaeddec3efe4606d23ff1e430
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index b0ba319465..4110014faa 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..07c0f0ad72 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-52923847fa17ad43164c4e44febcea98bd09bd65
\ No newline at end of file
+719c80e77c69dcc38048afa40c3900020fe32588
\ No newline at end of file