diff --git a/game/fps/alienarena/actions.py b/game/fps/alienarena/actions.py
new file mode 100755
index 0000000000..894dccba39
--- /dev/null
+++ b/game/fps/alienarena/actions.py
@@ -0,0 +1,27 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2
+# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
+
+shelltools.export("PTHREAD_LIBS", "-lpthread")
+shelltools.export("PTHREAD_CFLAGS", "-pthread")
+
+def setup():
+ # Use system libopenal
+ pisitools.dosed("source/unix/qal_unix.c", "libopenal.so", "$LIBOPENAL")
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+
+
diff --git a/game/fps/alienarena/files/alienarena.desktop b/game/fps/alienarena/files/alienarena.desktop
new file mode 100755
index 0000000000..5749fb447d
--- /dev/null
+++ b/game/fps/alienarena/files/alienarena.desktop
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Type=Application
+Version=1.0
+Encoding=UTF-8
+Name=Alien Arena
+Name[tr]=Alien Arena
+GenericName=FPS Game
+GenericName[tr]=FPS Oyunu
+Icon=alienarena
+Exec=alienarena
+Terminal=false
+StartupNotify=false
+Categories=Application;Game;ActionGame;
diff --git a/game/fps/alienarena/files/alienarena.png b/game/fps/alienarena/files/alienarena.png
new file mode 100755
index 0000000000..91446f9cbd
Binary files /dev/null and b/game/fps/alienarena/files/alienarena.png differ
diff --git a/game/fps/alienarena/files/use_home_dir.patch b/game/fps/alienarena/files/use_home_dir.patch
new file mode 100755
index 0000000000..379c8cafab
--- /dev/null
+++ b/game/fps/alienarena/files/use_home_dir.patch
@@ -0,0 +1,39 @@
+Index: alienarena-7.50/source/qcommon/qcommon.h
+===================================================================
+--- alienarena-7.50.orig/source/qcommon/qcommon.h
++++ alienarena-7.50/source/qcommon/qcommon.h
+@@ -43,7 +43,7 @@ Foundation, Inc., 59 Temple Place - Suit
+
+ #if !defined USER_GAMEDATA
+ // default for COR_GAME environment variable
+-#define USER_GAMEDATA ".codered"
++#define USER_GAMEDATA ".alienarena"
+ #endif
+ /*----------------------------------------*/
+
+Index: alienarena-7.50/Tools/LinuxScripts/launch-server
+===================================================================
+--- alienarena-7.50.orig/Tools/LinuxScripts/launch-server
++++ alienarena-7.50/Tools/LinuxScripts/launch-server
+@@ -22,7 +22,7 @@
+ if [ $COR_GAME ] ; then
+ aadir=$COR_GAME
+ else
+-aadir=~/.codered
++aadir=~/.alienarena
+ fi
+
+ ### Set your AA Binary Name or command string ($1 is the argument
+Index: alienarena-7.50/Tools/LinuxScripts/launchservers
+===================================================================
+--- alienarena-7.50.orig/Tools/LinuxScripts/launchservers
++++ alienarena-7.50/Tools/LinuxScripts/launchservers
+@@ -10,7 +10,7 @@ execname=crx-ded
+ if [ ${COR_GAME} ]; then
+ cfgpath=${COR_GAME}/arena
+ else
+-cfgpath=~/.codered/arena
++cfgpath=~/.alienarena/arena
+ fi
+
+ # use to generate core dumps after crashs
diff --git a/game/fps/alienarena/pspec.xml b/game/fps/alienarena/pspec.xml
new file mode 100755
index 0000000000..eb330a27cf
--- /dev/null
+++ b/game/fps/alienarena/pspec.xml
@@ -0,0 +1,76 @@
+
+
+
+
+ alienarena
+ http://red.planetarena.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ GPLv2
+ COR-Entertainment-LLC
+ alienarena
+ app:gui
+ A standalone 3D first person shooter game
+ Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III.
+ http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz
+
+ libjpeg-turbo-devel
+ libXxf86dga-devel
+ libXxf86vm-devel
+ libX11-devel
+ mesa-devel
+ openal-devel
+ ode-devel
+ libvorbis-devel
+
+
+ use_home_dir.patch
+
+
+
+
+ alienarena
+
+ libjpeg-turbo
+ libXxf86vm
+ curl
+ zlib
+ libX11
+ libvorbis
+ libgcc
+ freetype
+
+
+ /usr/bin
+ /usr/lib/alienarena
+ /usr/share/alienarena
+ /usr/share/applications
+ /usr/share/pixmaps
+ /usr/share/icons
+ /usr/share/doc
+
+
+ alienarena.png
+ alienarena.desktop
+
+
+
+
+
+ 2014-09-27
+ 7.66
+ Version bump.
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+
+ 2013-01-12
+ 7.60.1
+ First release
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+
diff --git a/game/fps/alienarena/translations.xml b/game/fps/alienarena/translations.xml
new file mode 100755
index 0000000000..b93536beee
--- /dev/null
+++ b/game/fps/alienarena/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ alienarena
+ 3 Boyutlu ilkgözden nişancılık oyunu
+ Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur.
+
+
diff --git a/multimedia/sound/audiofile/actions.py b/multimedia/sound/audiofile/actions.py
new file mode 100644
index 0000000000..02b3b49d92
--- /dev/null
+++ b/multimedia/sound/audiofile/actions.py
@@ -0,0 +1,29 @@
+#!/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
+
+def setup():
+ # Don't build examples
+ pisitools.dosed("Makefile.am", "^(SRC_SUBDIRS.*?) examples", r"\1")
+
+ autotools.autoreconf("-vfi")
+ autotools.configure("--disable-static \
+ --disable-werror \
+ --enable-largefile")
+
+def build():
+ autotools.make()
+
+def check():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "ChangeLog", "README", "TODO", "NEWS")
diff --git a/multimedia/sound/audiofile/pspec.xml b/multimedia/sound/audiofile/pspec.xml
new file mode 100644
index 0000000000..767ca9c4d6
--- /dev/null
+++ b/multimedia/sound/audiofile/pspec.xml
@@ -0,0 +1,84 @@
+
+
+
+
+ audiofile
+ http://www.68k.org/~michael/audiofile/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ app:console
+ library
+ An elegant API for accessing audio files
+ audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE.
+ http://audiofile.68k.org/audiofile-0.3.6.tar.gz
+
+
+
+ audiofile
+
+ flac
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/doc
+ /usr/share/man
+
+
+
+
+ audiofile-devel
+ Development files for audiofile
+
+ audiofile
+
+
+ /usr/bin/audiofile-config
+ /usr/include
+ /usr/share/aclocal
+ /usr/lib/pkgconfig
+ /usr/lib32/pkgconfig
+
+
+
+
+ audiofile-32bit
+ emul32
+ 32-bit shared libraries for audiofile
+ emul32
+
+ flac-32bit
+ audiofile
+
+
+ /usr/lib32
+
+
+
+
+
+ 2014-05-20
+ 0.3.4
+ Rebuild
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2014-01-18
+ 0.3.4
+ Rebuild
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2012-01-14
+ 0.3.4
+ First release
+ Idris Kalp
+ admins@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/multimedia/sound/audiofile/translations.xml b/multimedia/sound/audiofile/translations.xml
new file mode 100644
index 0000000000..a24d5a777c
--- /dev/null
+++ b/multimedia/sound/audiofile/translations.xml
@@ -0,0 +1,18 @@
+
+
+
+ audiofile
+ Ses dosyalarına erişim için zarif bir UPA
+ audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar.
+
+
+
+ audiofile-devel
+ audiofile için geliştirme dosyaları
+
+
+
+ audiofile-32bit
+ audiofile için 32-bit paylaşımlı kitaplıklar
+
+
diff --git a/multimedia/sound/libmikmod/actions.py b/multimedia/sound/libmikmod/actions.py
new file mode 100644
index 0000000000..8955232b3d
--- /dev/null
+++ b/multimedia/sound/libmikmod/actions.py
@@ -0,0 +1,45 @@
+#!/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 libtools
+from pisi.actionsapi import get
+
+
+WorkDir = "%s-%s" % (get.srcNAME(), get.srcVERSION().replace("_", "-"))
+
+def setup():
+ shelltools.sym(".", "m4")
+ shelltools.export("CFLAGS", "%s -DDRV_RAW" % get.CFLAGS())
+
+ autotools.autoreconf("-vfi -Im4")
+ libtools.gnuconfig_update()
+
+ options = "--disable-esd \
+ --disable-af \
+ --disable-alsa \
+ --enable-oss \
+ --disable-static"
+
+ if get.buildTYPE() == "emul32":
+ options += " --bindir=/emul32/bin"
+
+ shelltools.export("CFLAGS", "%s -DDRV_RAW -m32" % get.CFLAGS())
+ shelltools.export("CXXFLAGS", "%s -m32" % get.CFLAGS())
+ shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
+
+ autotools.configure(options)
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "NEWS", "README", "TODO")
+ pisitools.dohtml("docs/*.html")
diff --git a/multimedia/sound/libmikmod/pspec.xml b/multimedia/sound/libmikmod/pspec.xml
new file mode 100644
index 0000000000..3445f816b7
--- /dev/null
+++ b/multimedia/sound/libmikmod/pspec.xml
@@ -0,0 +1,100 @@
+
+
+
+
+ libmikmod
+ http://mikmod.raphnet.net/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ A library to play a wide range of module formats
+ libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few.
+ http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.7/libmikmod-3.3.7.tar.gz
+
+ audiofile-devel
+ alsa-lib-devel
+
+
+
+
+ libmikmod
+
+ pulseaudio-libs
+
+
+ /usr/lib
+ /usr/share/doc/libmikmod
+ /usr/share/info
+ /usr/share/man
+
+
+
+
+ libmikmod-devel
+ Development files for libmikmod
+
+ libmikmod
+
+
+ /usr/bin/libmikmod-config
+ /usr/include
+ /usr/share/aclocal
+
+
+
+
+ libmikmod-32bit
+ emul32
+ 32-bit shared libraries for libmikmod
+ emul32
+
+ audiofile-32bit
+ glibc-32bit
+ alsa-lib-32bit
+ pulseaudio-libs-32bit
+
+
+ libmikmod
+ audiofile-32bit
+ alsa-lib-32bit
+ pulseaudio-libs-32bit
+
+
+ /usr/lib32
+
+
+
+
+
+ 2015-10-19
+ 3.3.7
+ Version bump.
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+ 2014-05-31
+ 3.3.6
+ Version bump.
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+ 2014-01-31
+ 3.3.5
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2011-08-01
+ 3.2.0_beta2
+ First release
+ Anıl Özbek
+ admins@pisilinux.org
+
+
+
diff --git a/multimedia/sound/libmikmod/translations.xml b/multimedia/sound/libmikmod/translations.xml
new file mode 100644
index 0000000000..39c1439aef
--- /dev/null
+++ b/multimedia/sound/libmikmod/translations.xml
@@ -0,0 +1,20 @@
+
+
+
+ libmikmod
+ Bir çok modül formatını çalabilen bir kitaplık
+ libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir.
+ libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669.
+ libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos.
+
+
+
+ libmikmod-devel
+ libmikmod için geliştirme dosyaları
+
+
+
+ libmikmod-32bit
+ libmikmod için 32-bit paylaşımlı kitaplıklar
+
+
diff --git a/multimedia/video/smpeg/actions.py b/multimedia/video/smpeg/actions.py
new file mode 100644
index 0000000000..2cebd0123b
--- /dev/null
+++ b/multimedia/video/smpeg/actions.py
@@ -0,0 +1,58 @@
+#!/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
+
+def setup():
+ shelltools.export("CC", get.CC())
+ shelltools.export("CXX", get.CXX())
+ shelltools.export("RANLIB", get.RANLIB())
+ shelltools.export("AR", get.AR())
+
+ # enable-debug is bogus, it should stay here
+ options = "--with-x \
+ --enable-opengl-player \
+ --disable-gtk-player \
+ --enable-mmx \
+ --disable-assertions \
+ --disable-static \
+ --enable-debug"
+
+ if get.buildTYPE() == "emul32":
+ options += " --prefix=/emul32 \
+ --libdir=/usr/lib32 \
+ --bindir=/emul32/bin \
+ --includedir=/emul32/include \
+ --mandir=/emul32/man \
+ --disable-sdltest \
+ --disable-gtktest"
+
+ shelltools.export("CC", "%s -m32" % get.CC())
+ shelltools.export("CXX", "%s -m32" % get.CXX())
+ shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
+ shelltools.export("CXXFLAGS", "%s -m32" % get.CFLAGS())
+
+
+
+ shelltools.system("rm -rf acinclude/lt*.m4 acinclude/libtool.m4")
+
+ neededfilelist=["NEWS","ChangeLog","AUTHORS"]
+ for i in neededfilelist:
+ shelltools.touch(i)
+
+ autotools.autoreconf("-fi -Iacinclude")
+ autotools.configure(options)
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("CHANGES", "README*", "TODO")
diff --git a/multimedia/video/smpeg/files/smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff b/multimedia/video/smpeg/files/smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff
new file mode 100644
index 0000000000..dfcaf05c14
--- /dev/null
+++ b/multimedia/video/smpeg/files/smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff
@@ -0,0 +1,11 @@
+--- plaympeg.c 2008-12-23 13:36:59.000000000 +0100
++++ plaympeg.c.oden 2008-12-23 13:36:51.000000000 +0100
+@@ -262,7 +262,7 @@ int ftp_get_reply(int tcp_sock)
+ answer[i] = c;
+ }
+ answer[i] = 0;
+- fprintf(stderr, answer + 4);
++ fprintf(stderr, "%s", answer + 4);
+ }
+ while(answer[3] == '-');
+
diff --git a/multimedia/video/smpeg/files/smpeg-0.4.5-fix-header.patch b/multimedia/video/smpeg/files/smpeg-0.4.5-fix-header.patch
new file mode 100644
index 0000000000..8929cd7716
--- /dev/null
+++ b/multimedia/video/smpeg/files/smpeg-0.4.5-fix-header.patch
@@ -0,0 +1,16 @@
+--- smpeg-0.4.5/MPEGaudio.h.orig 2006-05-01 06:18:36.000000000 +0300
++++ smpeg-0.4.5/MPEGaudio.h 2011-02-05 18:55:15.573765022 +0200
+@@ -153,6 +153,13 @@
+ };
+
+ /* The actual MPEG audio class */
++class MPEGaudio;
++void Play_MPEGaudioSDL(void *udata, Uint8 *stream, int len);
++int Play_MPEGaudio(MPEGaudio *audio, Uint8 *stream, int len);
++#ifdef THREADED_AUDIO
++int Decode_MPEGaudio(void *udata);
++#endif
++
+ class MPEGaudio : public MPEGerror, public MPEGaudioaction {
+
+ public:
diff --git a/multimedia/video/smpeg/files/smpeg-0.4.5-libsupc++.patch b/multimedia/video/smpeg/files/smpeg-0.4.5-libsupc++.patch
new file mode 100644
index 0000000000..562ab75096
--- /dev/null
+++ b/multimedia/video/smpeg/files/smpeg-0.4.5-libsupc++.patch
@@ -0,0 +1,16 @@
+--- smpeg-0.4.5/Makefile.am.libsupc++ 2006-05-01 04:56:06.000000000 +0300
++++ smpeg-0.4.5/Makefile.am 2011-02-05 19:15:59.707558762 +0200
+@@ -64,6 +64,13 @@
+ -release $(LT_RELEASE) \
+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
+
++# (gb) hackish to force link with gcc so that we don't get a
++# dependence on libstdc++.so.*. Do add necessary supc++ hereunder.
++CXXLD = $(CC)
++
++libsmpeg_la_LIBADD = \
++ -lsupc++ -lgcc_s
++
+ EXTRA_DIST = \
+ CHANGES \
+ COPYING \
diff --git a/multimedia/video/smpeg/files/smpeg-0.4.5-link.patch b/multimedia/video/smpeg/files/smpeg-0.4.5-link.patch
new file mode 100644
index 0000000000..eef8c1f690
--- /dev/null
+++ b/multimedia/video/smpeg/files/smpeg-0.4.5-link.patch
@@ -0,0 +1,11 @@
+--- Makefile.am~ 2012-10-14 17:50:31.000000000 +0800
++++ Makefile.am 2012-10-14 18:22:05.000000000 +0800
+@@ -119,7 +119,7 @@
+
+ # Sources for gtv
+ gtv_SOURCES = gtv.c gtv.h
+-gtv_LDADD = @GTK_LIBS@ libsmpeg.la
++gtv_LDADD = @GTK_LIBS@ libsmpeg.la -lX11
+
+ # Sources for glmovie
+ glmovie_SOURCES = glmovie-tile.c glmovie.c glmovie.h
diff --git a/multimedia/video/smpeg/pspec.xml b/multimedia/video/smpeg/pspec.xml
new file mode 100644
index 0000000000..38b6dbf1c7
--- /dev/null
+++ b/multimedia/video/smpeg/pspec.xml
@@ -0,0 +1,116 @@
+
+
+
+
+ smpeg
+ http://www.lokigames.com/development/smpeg.php3
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ app:gui
+ SDL MPEG library
+ SMPEG is a SDL MPEG decoding library.
+ http://source.pisilinux.org/1.0/smpeg-0.4.5.tar.xz
+
+ libsdl-devel
+ freeglut-devel
+ mesa-devel
+ mesa-glu-devel
+
+
+ smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff
+ smpeg-0.4.5-fix-header.patch
+ smpeg-0.4.5-libsupc++.patch
+ smpeg-0.4.5-link.patch
+
+
+
+
+ smpeg
+
+ libsdl
+ mesa
+ mesa-glu
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/doc
+ /usr/share/man
+
+
+
+
+ smpeg-devel
+ Development files for smpeg
+
+ smpeg
+
+
+ /usr/bin/smpeg-config
+ /usr/include
+ /usr/share/aclocal
+
+
+
+
+ smpeg-32bit
+ emul32
+ 32-bit shared libraries for smpeg
+ emul32
+
+ freeglut-32bit
+ mesa-32bit
+ libsdl-32bit
+ mesa-glu-32bit
+
+
+ smpeg
+ libsdl-32bit
+
+
+ /usr/lib32
+
+
+
+
+
+ 2014-06-01
+ 0.4.5
+ Rebuild
+ Kamil Atlı
+ suvarice@gmail.com
+
+
+ 2014-03-09
+ 0.4.5
+ Rebuild
+ Varol Maksutoğlu
+ waroi@pisilinux.org
+
+
+ 2013-07-31
+ 0.4.5
+ Version bump.
+ Serdar Soytetir
+ kaptan@pisilinux.org
+
+
+ 2013-07-29
+ 0.4.4
+ missing dep.
+ Erdinç Gültekin
+ erdincgultekin@pisilinux.org
+
+
+ 2012-12-30
+ 0.4.4
+ First release
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+
diff --git a/multimedia/video/smpeg/translations.xml b/multimedia/video/smpeg/translations.xml
new file mode 100644
index 0000000000..f6884118a2
--- /dev/null
+++ b/multimedia/video/smpeg/translations.xml
@@ -0,0 +1,19 @@
+
+
+
+ smpeg
+ SDL MPEG kitaplığı
+ SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır.
+ SDL MPEG
+
+
+
+ smpeg-devel
+ smpeg için geliştirme dosyaları
+
+
+
+ smpeg-32bit
+ smpeg için 32-bit paylaşımlı kitaplıklar
+
+
diff --git a/office/homebank/actions.py b/office/homebank/actions.py
new file mode 100644
index 0000000000..1832b86149
--- /dev/null
+++ b/office/homebank/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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
+
+
+def setup():
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
diff --git a/office/homebank/pspec.xml b/office/homebank/pspec.xml
new file mode 100644
index 0000000000..8943ebb0a2
--- /dev/null
+++ b/office/homebank/pspec.xml
@@ -0,0 +1,90 @@
+
+
+
+
+ homebank
+ http://homebank.free.fr
+
+ Stefan Gronewold (groni)
+ groni@pisilinux.org
+
+ GPLv2
+ homebank
+ app:gui
+ Free, easy, personal accounting for everyone
+ «HomeBank» is free software that will assist you to manage your personal accounting.
+ http://homebank.free.fr/public/homebank-5.0.5.tar.gz
+
+ cairo-devel
+ libofx-devel
+ pango-devel
+ gdk-pixbuf-devel
+ pixman-devel
+ gtk3-devel
+ glib2-devel
+
+
+
+
+ homebank
+
+
+ cairo
+ libofx
+ pango
+ gdk-pixbuf
+ gtk3
+ glib2
+
+
+ /usr/bin
+ /usr/share/applications
+ /usr/share/application-registry
+ /usr/lib
+ /usr/share
+ /usr/share/doc
+ /usr/share/locale
+ /usr/share/icons/hicolor
+
+
+
+
+ homebank-data
+ Data Files for Homebank
+
+ /usr/share/homebank/datas
+ /usr/share/mime-info
+
+
+
+
+
+ 2015-10-12
+ 5.0.5
+ Version bump.
+ Stefan Gronewold (groni)
+ groni@pisilinux.org
+
+
+ 2015-02-14
+ 5.0.0
+ Version bump.
+ Hakan Yıldız
+ hknyldz93@gmail.com
+
+
+ 2014-09-26
+ 4.6.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 01.11.2013
+ 4.5.4
+ First Release
+ Stefan Gronewold(groni)
+ groni3427@gmail.com
+
+
+
diff --git a/office/homebank/translations.xml b/office/homebank/translations.xml
new file mode 100644
index 0000000000..b9d742e281
--- /dev/null
+++ b/office/homebank/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ homebank
+ Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı
+ HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır..
+
+
+ hmmer-doc
+ Hmmer Dökümanları
+ Hmmer paketi için dökümantasyon dosyaları.
+
+
diff --git a/office/misc/libofx/actions.py b/office/misc/libofx/actions.py
new file mode 100644
index 0000000000..51e871bce7
--- /dev/null
+++ b/office/misc/libofx/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 get
+
+
+def setup():
+ autotools.autoreconf("-fi")
+ autotools.configure("--disable-static \
+ --disable-gengetopt")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
diff --git a/office/misc/libofx/files/libofx-0.9.5-gcc47.patch b/office/misc/libofx/files/libofx-0.9.5-gcc47.patch
new file mode 100644
index 0000000000..2e6ee8b08d
--- /dev/null
+++ b/office/misc/libofx/files/libofx-0.9.5-gcc47.patch
@@ -0,0 +1,11 @@
+diff -ruN libofx-0.9.5.orig/ofxconnect/ofxpartner.cpp libofx-0.9.5/ofxconnect/ofxpartner.cpp
+--- libofx-0.9.5.orig/ofxconnect/ofxpartner.cpp 2011-03-31 00:30:50.000000000 +0200
++++ libofx-0.9.5/ofxconnect/ofxpartner.cpp 2012-06-30 21:57:35.747989782 +0200
+@@ -37,6 +37,7 @@
+ #include
+ #include
+ #include
++#include
+
+ using std::string;
+ using std::vector;
diff --git a/office/misc/libofx/pspec.xml b/office/misc/libofx/pspec.xml
new file mode 100644
index 0000000000..49658c8728
--- /dev/null
+++ b/office/misc/libofx/pspec.xml
@@ -0,0 +1,91 @@
+
+
+
+
+ libofx
+ http://libofx.sourceforge.net
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2+
+ app:console
+ library
+ A library for supporting Open Financial Exchange (OFX) format
+ libofx is a library designed to allow applications to very easily support OFX command responses, usually provided by financial institutions.
+ http://sourceforge.net/projects/libofx/files/libofx/0.9.10/libofx-0.9.10.tar.gz
+
+ opensp-devel
+
+
+
+ libofx-0.9.5-gcc47.patch
+
+
+
+
+ libofx
+
+ opensp
+ libgcc
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/doc
+ /usr/share/libofx
+ /usr/share/man/man1
+
+
+
+
+ libofx-devel
+ Development files for libofx
+
+ libofx
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ libofx-docs
+ Documentation for libofx
+
+ /usr/share/doc/libofx/html
+
+
+
+
+
+ 2015-02-06
+ 0.9.10
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2013-07-28
+ 0.9.5
+ Dep Fixed
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2013-02-19
+ 0.9.5
+ Updated.
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2010-10-13
+ 0.9.1
+ First release
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+
+
diff --git a/office/misc/libofx/translations.xml b/office/misc/libofx/translations.xml
new file mode 100644
index 0000000000..f6c223cc68
--- /dev/null
+++ b/office/misc/libofx/translations.xml
@@ -0,0 +1,18 @@
+
+
+
+ libofx
+ Açık Finansal Takas (OXF) dosya biçimi kitaplığı
+ libofx, uygulamaların finansal kuruluşlar tarafından sağlanan OFX yapılarını desteklemesini sağlayan bir kitaplıktır.
+
+
+
+ libofx-docs
+ libofx için belgelendirme
+
+
+
+ libofx-devel
+ libofx için geliştirme dosyaları
+
+