diff --git a/hardware/mobile/ifuse/actions.py b/hardware/mobile/ifuse/actions.py
new file mode 100644
index 0000000000..8d09260761
--- /dev/null
+++ b/hardware/mobile/ifuse/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
+
+def setup():
+ autotools.autoreconf("-vfi")
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "COPYING", "README")
diff --git a/hardware/mobile/ifuse/pspec.xml b/hardware/mobile/ifuse/pspec.xml
new file mode 100644
index 0000000000..36a17f4fcc
--- /dev/null
+++ b/hardware/mobile/ifuse/pspec.xml
@@ -0,0 +1,48 @@
+
+
+
+
+ ifuse
+ http://matt.colyer.name/projects/iphone-linux
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2+
+ library
+ Mount Apple iPhone and iPod touch devices
+ ifuse, a fuse filesystem for mounting iPhone and iPod touch devices.
+ http://www.libimobiledevice.org/downloads/ifuse-1.1.3.tar.bz2
+
+ libimobiledevice-devel
+ fuse-devel
+
+
+
+
+ ifuse
+
+ libimobiledevice
+ fuse
+ usbmuxd
+ libtasn1
+ gnutls
+ libplist
+
+
+ /usr/bin
+ /usr/share/man/
+ /usr/share/doc/ifuse
+
+
+
+
+
+ 2017-01-07
+ 1.1.3
+ First release
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+
diff --git a/hardware/mobile/ifuse/translations.xml b/hardware/mobile/ifuse/translations.xml
new file mode 100644
index 0000000000..4731029788
--- /dev/null
+++ b/hardware/mobile/ifuse/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ ifuse
+ Apple iPhone ve iPod touch cihazlarını bağlama aracı
+ ifuse, Apple iPhone ve iPod touch cihazlarını sisteme bağlamak için gerekli araçları içerir.
+
+
diff --git a/network/chat/loudmouth/actions.py b/network/chat/loudmouth/actions.py
new file mode 100644
index 0000000000..6c3f2bd0a1
--- /dev/null
+++ b/network/chat/loudmouth/actions.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.configure("--disable-static \
+ --prefix=/usr")
+
+ pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
+
+ pisitools.dodoc("README", "AUTHORS", "ChangeLog", "NEWS")
diff --git a/network/chat/loudmouth/pspec.xml b/network/chat/loudmouth/pspec.xml
new file mode 100644
index 0000000000..11af6f8394
--- /dev/null
+++ b/network/chat/loudmouth/pspec.xml
@@ -0,0 +1,60 @@
+
+
+
+
+ loudmouth
+ http://www.loudmouth-project.org
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ LGPLv2.1
+ library
+ Lightweight C Jabber library
+ Loudmouth is a lightweight and easy-to-use C library for programming with the XMPP protocol. It's designed to be easy to get started with and yet extensible to let you do anything the XMPP protocol allows.
+ https://mcabber.com/files/loudmouth/loudmouth-1.5.3.tar.bz2
+
+ intltool
+ glib2-devel
+ mit-kerberos
+ gnutls-devel
+
+
+
+
+ loudmouth
+
+ glib2
+ gnutls
+ mit-kerberos
+
+
+ /usr/lib/libloudmouth*
+ /usr/share/doc
+ /usr/share/gtk-doc
+
+
+
+
+ loudmouth-devel
+ Development files for loudmouth
+
+ glib2-devel
+ loudmouth
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2017-01-07
+ 1.5.3
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/network/chat/loudmouth/translations.xml b/network/chat/loudmouth/translations.xml
new file mode 100644
index 0000000000..e354436e8e
--- /dev/null
+++ b/network/chat/loudmouth/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ loudmouth
+ Hafif bir C jabber kitaplığı
+ Loudmouth XMPP protokolüyle programlama imkanı sunan hafif ve kullanımı kolay bir C kitaplığı. Programlamada kolay bir başlangıç sunmak ve XMPP protokolü el verdiği ölçüde esnek bir yapıda kalmak için tasarlanmıştır.
+
+
+
+ loudmouth-devel
+ loudmouth için geliştirme dosyaları
+
+
diff --git a/network/misc/clamz/actions.py b/network/misc/clamz/actions.py
new file mode 100644
index 0000000000..6243ee4d1d
--- /dev/null
+++ b/network/misc/clamz/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/copyleft/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("README")
diff --git a/network/misc/clamz/pspec.xml b/network/misc/clamz/pspec.xml
new file mode 100644
index 0000000000..f3af4ab250
--- /dev/null
+++ b/network/misc/clamz/pspec.xml
@@ -0,0 +1,47 @@
+
+
+
+
+ clamz
+ http://clamz.googlecode.com/
+
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+ LGPLv3
+ library
+ Amazon Downloader
+ Clamz is a little command-line program to download MP3 files from Amazon.com's music store. It is intended to serve as a substitute for Amazon's official MP3 Downloader, which is not free software (and therefore is only available in binary form for a limited set of platforms.) Clamz can be used to download either individual songs or complete albums that you have purchased from Amazon.
+ https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/clamz/clamz-0.5.tar.gz
+
+ curl-devel
+ libgcrypt-devel
+ expat-devel
+
+
+
+
+ clamz
+
+ curl
+ expat
+ libgcrypt
+
+
+ /usr/bin
+ /usr/share
+ /usr/share/man
+ /usr/share/doc
+
+
+
+
+
+ 2017-01-07
+ 0.5
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
diff --git a/network/misc/clamz/translations.xml b/network/misc/clamz/translations.xml
new file mode 100644
index 0000000000..cda4227b43
--- /dev/null
+++ b/network/misc/clamz/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ clamz
+ Amazon Downloader
+ Clamz is a little command-line program to download MP3 files from
+Amazon.com's music store. It is intended to serve as a substitute
+for Amazon's official MP3 Downloader, which is not free software (and
+therefore is only available in binary form for a limited set of
+platforms.) Clamz can be used to download either individual songs or
+complete albums that you have purchased from Amazon.
+
+
diff --git a/programming/misc/libofa/actions.py b/programming/misc/libofa/actions.py
new file mode 100644
index 0000000000..d8c309256f
--- /dev/null
+++ b/programming/misc/libofa/actions.py
@@ -0,0 +1,19 @@
+#!/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
+
+def setup():
+ autotools.configure("--disable-static")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.install()
+
+ pisitools.dodoc("AUTHORS","COPYING","README")
diff --git a/programming/misc/libofa/files/compile.patch b/programming/misc/libofa/files/compile.patch
new file mode 100644
index 0000000000..4953df7859
--- /dev/null
+++ b/programming/misc/libofa/files/compile.patch
@@ -0,0 +1,35 @@
+--- lib/JAMA/tnt_math_utils.h 2006-05-10 20:58:50.000000000 +0300
++++ lib/JAMA/tnt_math_utils.h 2007-07-27 16:20:01.000000000 +0300
+@@ -19,6 +19,16 @@
+
+ namespace TNT
+ {
++
++/**
++· @returns the absolute value of a real (no-complex) scalar.
++*/
++template
++Real abs(const Real &a)
++{
++ return (a > 0 ? a : -a);
++}
++
+ /**
+ @returns hypotenuse of real (non-complex) scalars a and b by
+ avoiding underflow/overflow
+@@ -56,15 +66,6 @@
+ }
+ */
+
+-/**
+- @returns the absolute value of a real (no-complex) scalar.
+-*/
+-template
+-Real abs(const Real &a)
+-{
+- return (a > 0 ? a : -a);
+-}
+-
+ }
+ #endif
+ /* MATH_UTILS_H */
diff --git a/programming/misc/libofa/files/gcc44.patch b/programming/misc/libofa/files/gcc44.patch
new file mode 100644
index 0000000000..b358739761
--- /dev/null
+++ b/programming/misc/libofa/files/gcc44.patch
@@ -0,0 +1,35 @@
+diff -up libofa-0.9.3/examples/example.cpp.gcc43 libofa-0.9.3/examples/example.cpp
+--- libofa-0.9.3/examples/example.cpp.gcc43 2009-02-25 11:10:51.000000000 -0600
++++ libofa-0.9.3/examples/example.cpp 2009-02-25 11:12:00.000000000 -0600
+@@ -7,6 +7,8 @@
+
+ -------------------------------------------------------------------*/
+
++#include
++#include
+ #include "protocol.h"
+
+ AudioData* loadWaveFile(char *file);
+diff -up libofa-0.9.3/examples/protocol.cpp.gcc43 libofa-0.9.3/examples/protocol.cpp
+--- libofa-0.9.3/examples/protocol.cpp.gcc43 2009-02-25 11:10:51.000000000 -0600
++++ libofa-0.9.3/examples/protocol.cpp 2009-02-25 11:10:51.000000000 -0600
+@@ -8,7 +8,7 @@
+ -------------------------------------------------------------------*/
+ #include
+ #include
+-#include
++#include
+ #include