diff --git a/hardware/disk/gptfdisk/actions.py b/hardware/disk/gptfdisk/actions.py
new file mode 100644
index 0000000000..ca21e6776c
--- /dev/null
+++ b/hardware/disk/gptfdisk/actions.py
@@ -0,0 +1,23 @@
+#!/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
+
+def build():
+ autotools.make()
+
+def install():
+ pisitools.dobin("cgdisk")
+ pisitools.dobin("fixparts")
+ pisitools.dobin("gdisk")
+ pisitools.dobin("sgdisk")
+
+ pisitools.doman("cgdisk.8")
+ pisitools.doman("fixparts.8")
+ pisitools.doman("gdisk.8")
+ pisitools.doman("sgdisk.8")
+
+ pisitools.dodoc("COPYING", "NEWS", "README")
\ No newline at end of file
diff --git a/hardware/disk/gptfdisk/pspec.xml b/hardware/disk/gptfdisk/pspec.xml
new file mode 100644
index 0000000000..802eacccc5
--- /dev/null
+++ b/hardware/disk/gptfdisk/pspec.xml
@@ -0,0 +1,47 @@
+
+
+ gptfdisk
+ http://www.rodsbooks.com/gdisk/
+
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+ GPLv2
+ app:console
+ A text-mode partitioning tool that works on GUID Partition Table (GPT) disks
+ A text-mode partitioning tool that works on GUID Partition Table (GPT) disks
+
+ util-linux
+
+ http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.0/gptfdisk-1.0.0.tar.gz
+
+
+
+ gptfdisk
+
+ util-linux
+
+
+ /usr/share/man
+ /usr/share/doc
+ /usr/bin
+
+
+
+
+
+ 2015-05-01
+ 1.0.0
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2014-03-04
+ 0.8.10
+ First Release
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+
diff --git a/hardware/disk/gptfdisk/translations.xml b/hardware/disk/gptfdisk/translations.xml
new file mode 100644
index 0000000000..978aafa489
--- /dev/null
+++ b/hardware/disk/gptfdisk/translations.xml
@@ -0,0 +1,7 @@
+
+
+ gptfdisk
+ A text-mode partitioning tool that works on GUID Partition Table (GPT) disks
+ A text-mode partitioning tool that works on GUID Partition Table (GPT) disks
+
+
\ No newline at end of file
diff --git a/programming/library/yaml-cpp/actions.py b/programming/library/yaml-cpp/actions.py
new file mode 100644
index 0000000000..9167129bf6
--- /dev/null
+++ b/programming/library/yaml-cpp/actions.py
@@ -0,0 +1,18 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure()
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
diff --git a/programming/library/yaml-cpp/pspec.xml b/programming/library/yaml-cpp/pspec.xml
new file mode 100644
index 0000000000..bbaace7619
--- /dev/null
+++ b/programming/library/yaml-cpp/pspec.xml
@@ -0,0 +1,40 @@
+
+
+
+
+ yaml-cpp
+ https://github.com/jbeder/yaml-cpp
+
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+ LGPLv2
+ yalm-cpp
+ Libry
+ yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec.
+ To get a feel for how it can be used, see the Tutorial or How to Emit YAML.
+ https://github.com/jbeder/yaml-cpp/archive/release-0.5.2.tar.gz
+
+ python-devel
+ boost-devel
+
+
+
+ yaml-cpp
+
+ /usr/lib/
+ /usr/include/yaml-cpp/*
+ /usr/lib/pkgconfig/
+ /usr/share/doc/
+
+
+
+
+ 2015-09-01
+ 0.5.2
+ First release
+ Ergün Salman
+ Poyraz76@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/system/boot/efibootmgr/actions.py b/system/boot/efibootmgr/actions.py
new file mode 100755
index 0000000000..456a4fbdc9
--- /dev/null
+++ b/system/boot/efibootmgr/actions.py
@@ -0,0 +1,25 @@
+#!/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 shelltools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def build():
+ shelltools.export("CFLAGS", "-Os")
+ autotools.make("all")
+
+def install():
+ pisitools.dosed("Makefile","BINDIR := /usr/sbin","BINDIR := %s/usr/sbin" % get.installDIR())
+ shelltools.makedirs("%s/usr/sbin" % get.installDIR())
+ shelltools.makedirs("%s/usr/lib" % get.installDIR())
+ shelltools.makedirs("%s/usr/share/man" % get.installDIR())
+ shelltools.makedirs("%s/usr/include" % get.installDIR())
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.insinto("/usr/lib", "src/lib/*.o")
+ pisitools.insinto("/usr/share/man", "src/man/*")
+ pisitools.insinto("/usr/include", "src/include/*.h")
diff --git a/system/boot/efibootmgr/pspec.xml b/system/boot/efibootmgr/pspec.xml
new file mode 100755
index 0000000000..8fb9cded2d
--- /dev/null
+++ b/system/boot/efibootmgr/pspec.xml
@@ -0,0 +1,48 @@
+
+
+
+
+ efibootmgr
+ https://github.com/vathpela/efibootmgr
+
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+ GPL2
+ app:console
+ Tool to modify UEFI Firmware Boot Manager Variables
+ a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager.
+ http://source.pisilinux.org/1.0/efibootmgr.tar.gz
+
+ pciutils
+ zlib
+ efivar
+ efivar-devel
+
+
+
+
+ efibootmgr
+
+ /usr/sbin
+ /usr/share/man
+ /usr/lib/*
+
+
+
+ efibootmgr-devel
+
+ /usr/include
+
+
+
+
+
+ 2014-09-27
+ 0.7.0.16
+ First release
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+
+
diff --git a/system/boot/efibootmgr/translations.xml b/system/boot/efibootmgr/translations.xml
new file mode 100755
index 0000000000..f3e83c97e6
--- /dev/null
+++ b/system/boot/efibootmgr/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ efibootmgr
+ UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç
+ UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç
+
+
diff --git a/system/boot/efivar/actions.py b/system/boot/efivar/actions.py
new file mode 100755
index 0000000000..054756ce7f
--- /dev/null
+++ b/system/boot/efivar/actions.py
@@ -0,0 +1,18 @@
+#!/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 shelltools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def build():
+ shelltools.export("CFLAGS", "-Os")
+ pisitools.dosed("Make.defaults","-O0","-Os")
+ autotools.make("libdir=/usr/lib bindir=/usr/bin")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s libdir=/usr/lib/" % get.installDIR())
diff --git a/system/boot/efivar/pspec.xml b/system/boot/efivar/pspec.xml
new file mode 100755
index 0000000000..e638ab7ed6
--- /dev/null
+++ b/system/boot/efivar/pspec.xml
@@ -0,0 +1,50 @@
+
+
+
+
+ efivar
+ https://github.com/vathpela/efivar
+
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+ LGPL2.1
+ app:console
+ Tools and library to manipulate EFI variables
+ Tools and library to manipulate EFI variables.
+ https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2
+
+
+
+ efivar
+
+ /usr/lib
+ /usr/share/man
+ /usr/bin
+
+
+
+ efivar-devel
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-02-21
+ 0.15
+ Version Bump
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2014-09-27
+ 0.10.8
+ First release
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/system/boot/efivar/translations.xml b/system/boot/efivar/translations.xml
new file mode 100755
index 0000000000..12aacfc122
--- /dev/null
+++ b/system/boot/efivar/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ efivar
+ EFI değişkenlerini işlemek için araçlar ve kütüphane
+ EFI değişkenlerini işlemek için araçlar ve kütüphane
+
+