diff --git a/network/analyzer/etherape/actions.py b/network/analyzer/etherape/actions.py
new file mode 100644
index 0000000000..df678dc5d5
--- /dev/null
+++ b/network/analyzer/etherape/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/copyleft/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("AT_M4DIR", "m4")
+ shelltools.export("AUTOPOINT", "true")
+ # to disable scrollkeeper
+ pisitools.dosed("Makefile.am", "src doc glade", "src glade")
+
+ autotools.autoreconf("-vfi")
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "ChangeLog", "FAQ", "NEWS", "OVERVIEW", "README*", "TODO")
diff --git a/network/analyzer/etherape/files/desktop.patch b/network/analyzer/etherape/files/desktop.patch
new file mode 100644
index 0000000000..7257ac41a5
--- /dev/null
+++ b/network/analyzer/etherape/files/desktop.patch
@@ -0,0 +1,20 @@
+Index: etherape-0.9.12/etherape.desktop.in
+===================================================================
+--- etherape-0.9.12.orig/etherape.desktop.in
++++ etherape-0.9.12/etherape.desktop.in
+@@ -2,11 +2,13 @@
+ Version=1.0
+ Encoding=UTF-8
+ Name=EtherApe
++Name[tr]=EtherApe
+ GenericName=EtherApe
+ Comment=Graphical Network Monitor
+ Comment[es]=Monitor Gráfico de Red
+-Exec=etherape
++Comment[tr]=Grafiksel Ağ İzleyici
++Exec=xdg-su -c "etherape"
+ Terminal=false
+ Type=Application
+ Icon=etherape
+-Categories=GNOME;System;Network;
++Categories=System;Monitor;Network;
diff --git a/network/analyzer/etherape/pspec.xml b/network/analyzer/etherape/pspec.xml
new file mode 100644
index 0000000000..6d2af45cbf
--- /dev/null
+++ b/network/analyzer/etherape/pspec.xml
@@ -0,0 +1,64 @@
+
+
+
+
+ etherape
+ http://etherape.sourceforge.net/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ etherape
+ app:gui
+ Graphical network monitor
+ etherape is a graphical network monitor with fancy display features.
+ mirrors://sourceforge/etherape/etherape-0.9.20.tar.gz
+
+ gtk3-devel
+ popt-devel
+ glib2-devel
+ libpcap-devel
+ libglade-devel
+ goocanvas-devel
+ gnome-doc-utils
+ gdk-pixbuf-devel
+
+
+
+
+
+
+
+ etherape
+
+ gtk3
+ popt
+ glib2
+ libpcap
+ libglade
+ goocanvas
+ gdk-pixbuf
+
+
+ /etc/etherape
+ /usr/bin
+ /usr/share/applications
+ /usr/share/doc/etherape
+ /usr/share/etherape
+ /usr/share/locale
+ /usr/share/man
+ /usr/share/pixmaps
+
+
+
+
+
+ 2022-07-10
+ 0.9.20
+ First release
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+
+
diff --git a/network/analyzer/etherape/translations.xml b/network/analyzer/etherape/translations.xml
new file mode 100644
index 0000000000..5b6bb71ec9
--- /dev/null
+++ b/network/analyzer/etherape/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ etherape
+ Grafiksel ağ izleyici
+ etherape ağ durumunu görsel değişikliklerle gösteren bir ağ izleyicisidir.
+
+
diff --git a/network/analyzer/nmap/actions.py b/network/analyzer/nmap/actions.py
new file mode 100644
index 0000000000..f7958b1e8a
--- /dev/null
+++ b/network/analyzer/nmap/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():
+ pisitools.dosed("ncat/Makefile.in", "-m 755 -s ncat", "-m 755 ncat")
+ autotools.autoconf()
+ autotools.configure("--with-openssl \
+ --with-zenmap \
+ --with-ndiff \
+ --with-nping \
+ --with-ncat \
+ --with-liblua")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s STRIP=true" % get.installDIR())
+ for i in ["uninstall_zenmap", "nmapfe", "xnmap"]:
+ pisitools.remove("/usr/bin/%s" % i)
+
+ pisitools.dodoc("LICENSE", "HACKING", "README.md")
diff --git a/network/analyzer/nmap/files/nmap-4.75-include.patch b/network/analyzer/nmap/files/nmap-4.75-include.patch
new file mode 100644
index 0000000000..d8105ce78b
--- /dev/null
+++ b/network/analyzer/nmap/files/nmap-4.75-include.patch
@@ -0,0 +1,13 @@
+diff -Naurp nmap-4.75-orig/nmap_dns.h nmap-4.75/nmap_dns.h
+--- nmap-4.75-orig/nmap_dns.h 2008-09-09 08:51:59.000000000 +0200
++++ nmap-4.75/nmap_dns.h 2008-09-09 08:52:19.000000000 +0200
+@@ -95,6 +95,9 @@
+ * *
+ ***************************************************************************/
+
++#include
++#include
++
+ class Target;
+
+ void nmap_mass_rdns(Target ** targets, int num_targets);
diff --git a/network/analyzer/nmap/files/nmap-5.10_beta1-string.patch b/network/analyzer/nmap/files/nmap-5.10_beta1-string.patch
new file mode 100644
index 0000000000..df29db3782
--- /dev/null
+++ b/network/analyzer/nmap/files/nmap-5.10_beta1-string.patch
@@ -0,0 +1,11 @@
+--- nmap-5.10BETA1/Target.h.org 2009-12-08 08:21:59.000000000 +0100
++++ nmap-5.10BETA1/Target.h 2009-12-08 08:22:02.000000000 +0100
+@@ -99,6 +99,8 @@
+
+ #ifndef NOLUA
+ #include "nse_main.h"
++#else
++#include
+ #endif
+
+ #include "portreasons.h"
diff --git a/network/analyzer/nmap/files/nmap-5.21-python.patch b/network/analyzer/nmap/files/nmap-5.21-python.patch
new file mode 100644
index 0000000000..aa0d4f9db9
--- /dev/null
+++ b/network/analyzer/nmap/files/nmap-5.21-python.patch
@@ -0,0 +1,21 @@
+diff -Naurp nmap-5.21-orig/Makefile.in nmap-5.21/Makefile.in
+--- nmap-5.21-orig/Makefile.in 2010-01-31 09:53:53.000000000 +0100
++++ nmap-5.21/Makefile.in 2010-01-31 09:54:48.000000000 +0100
+@@ -253,7 +253,7 @@ build-zenmap: $(ZENMAPDIR)/setup.py $(ZE
+
+ install-zenmap: $(ZENMAPDIR)/setup.py
+ $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
+- cd $(ZENMAPDIR) && $(PYTHON) setup.py --quiet install --prefix "$(prefix)" --force $(if $(DESTDIR),--root "$(DESTDIR)")
++ cd $(ZENMAPDIR) && $(PYTHON) setup.py --quiet install --prefix "$(prefix)" --force $(if $(DESTDIR),--root "$(DESTDIR)") --no-compile
+ $(INSTALL) -c -m 644 docs/zenmap.1 $(DESTDIR)$(mandir)/man1/
+ # Create a symlink from nmapfe to zenmap if nmapfe doesn't exist or is
+ # already a link.
+@@ -267,7 +267,7 @@ build-ndiff:
+ cd $(NDIFFDIR) && $(PYTHON) setup.py build $(if $(DESTDIR),--executable "$(DEFAULT_PYTHON_PATH)")
+
+ install-ndiff:
+- cd $(NDIFFDIR) && $(PYTHON) setup.py install --prefix "$(prefix)" $(if $(DESTDIR),--root "$(DESTDIR)")
++ cd $(NDIFFDIR) && $(PYTHON) setup.py install --prefix "$(prefix)" $(if $(DESTDIR),--root "$(DESTDIR)") --no-compile
+
+ NSE_FILES = scripts/script.db scripts/*.nse
+ NSE_LIB_LUA_FILES = nselib/*.lua
diff --git a/network/analyzer/nmap/files/nmap.png b/network/analyzer/nmap/files/nmap.png
new file mode 100644
index 0000000000..ef0af9b1df
Binary files /dev/null and b/network/analyzer/nmap/files/nmap.png differ
diff --git a/network/analyzer/nmap/files/tr.patch b/network/analyzer/nmap/files/tr.patch
new file mode 100644
index 0000000000..6a38577e01
--- /dev/null
+++ b/network/analyzer/nmap/files/tr.patch
@@ -0,0 +1,34 @@
+diff -Nur nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap.desktop nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap.desktop
+--- nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap.desktop 2010-07-07 21:05:45.140507533 +0300
++++ nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap.desktop 2010-07-07 21:09:03.588380333 +0300
+@@ -2,6 +2,7 @@
+ Encoding=UTF-8
+ Name=Zenmap
+ GenericName=GUI Port Scanner
++GenericName[tr]=Port Tarayıcı
+ TryExec=zenmap
+ Exec=zenmap %F
+ Terminal=false
+@@ -9,3 +10,4 @@
+ Type=Application
+ Categories=Application;Network;Security
+ Comment=A cross-platform GUI for the Nmap Security Scanner.
++Comment[tr]=Nmap Güvenlik Tarayıcı için grafik arabirim.
+diff -Nur nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap-root.desktop nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap-root.desktop
+--- nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap-root.desktop 2010-07-07 21:05:45.140507533 +0300
++++ nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap-root.desktop 2010-07-07 21:09:04.924385518 +0300
+@@ -1,7 +1,9 @@
+ [Desktop Entry]
+ Encoding=UTF-8
+ Name=Zenmap (as root)
++Name[tr]=Zenmap (root olarak)
+ GenericName=GUI Port Scanner
++GenericName[tr]=Port Tarayıcı
+ TryExec=su-to-zenmap.sh
+ Exec=su-to-zenmap.sh %F
+ Terminal=false
+@@ -9,3 +11,4 @@
+ Type=Application
+ Categories=Application;Network;Security
+ Comment=A cross-platform GUI for the Nmap Security Scanner.
++Comment[tr]=Nmap Güvenlik Tarayıcı Grafik Arayüzü.
diff --git a/network/analyzer/nmap/pspec.xml b/network/analyzer/nmap/pspec.xml
new file mode 100644
index 0000000000..48305e36d9
--- /dev/null
+++ b/network/analyzer/nmap/pspec.xml
@@ -0,0 +1,85 @@
+
+
+
+
+ nmap
+ https://nmap.org/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ nmap
+ Utility for network exploration or security auditing
+ Nmap is a utility for network exploration or security auditing.
+ https://nmap.org/dist/nmap-7.92.tar.bz2
+
+ subversion-devel
+ libpcap-devel
+ openssl-devel
+ zlib-devel
+ lua-devel
+ apr-devel
+ gcc
+
+
+ nmap-4.75-include.patch
+ nmap-5.10_beta1-string.patch
+ nmap-5.21-python.patch
+
+
+
+
+ nmap
+ app:console
+
+ subversion
+ libpcap
+ openssl
+ libgcc
+ zlib
+ lua
+ apr
+
+
+ /usr/bin
+ /usr/share/ncat
+ /usr/share/nmap
+ /usr/share/nping
+ /usr/share/man
+ /usr/share/doc
+ /usr/share/pixmaps
+
+
+ nmap.png
+
+
+
+
+ zenmap
+ app:gui
+ zenmap is the graphical frontend for nmap
+
+ nmap
+ python-gtk
+ xdg-utils
+
+
+ /usr/bin/zenmap
+ /usr/share/man/man1/zenmap.1
+ /usr/lib/python*/site-packages
+ /usr/share/zenmap
+ /usr/share/applications
+
+
+
+
+
+ 2012-09-01
+ 7.92
+ First release
+ Kamil Atlı
+ suvarice@gmail.com
+
+
+
diff --git a/network/analyzer/nmap/translations.xml b/network/analyzer/nmap/translations.xml
new file mode 100644
index 0000000000..2d3c063f5d
--- /dev/null
+++ b/network/analyzer/nmap/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ nmap
+ Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araç
+ Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araçtır. Konsoldan yapacağınız sorgulamalarla ağınızda hangi makinaların açık/erişilebilir olduğunu, makinalarda hangi portlarda hangi hizmet protokollerinin ve uygulamaların çalıştığını, karşı makinada hangi işletim sisteminin yüklü olduğunu ve bağlantının hangi aygıt ile gerçekleştiğini öğrenebilirsiniz.
+
+
+
+ zenmap
+ zenmap, nmap aracı için grafik arabirim yazılımıdır
+
+
diff --git a/pisi-index.xml b/pisi-index.xml
index 2249929be2..84deafd9ef 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -174628,7 +174628,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Xfce için küçük bir yazı düzenleyici
Mousepad aims to be an easy-to-use and fast editor. Our target is an editor for quickly editing text files, not a development environment or an editor with a huge bunch of plugins. On the other hand we try to use the latest Gtk+ features available, which means that if Gtk adds something new in a major release that is useful for the editor, we will likely bump the Gtk dependency and integrate this new feature in Mousepad.
Mousepad, Xfce için yazılmış bir metin düzenleyicisidir.
- https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.9.tar.bz2
+ https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.10.tar.bz2
intltool
gtk3-devel
@@ -174667,6 +174667,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2022-07-10
+ 0.5.10
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2022-04-03
0.5.9
@@ -174925,7 +174932,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Xfce için resim göstericisi
Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment.
Ristretto, Xfce masaüstü ortamı için hızlı ve hafif bir resim görüntüleyicisidir.
- https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-0.12.2.tar.bz2
+ https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-0.12.3.tar.bz2
intltool
gtk3-devel
@@ -174964,6 +174971,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2022-07-10
+ 0.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2022-01-15
0.12.2
@@ -177901,7 +177915,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.xfce.base
Xfce file manager
Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant
- https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.8.tar.bz2
+ https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.9.tar.bz2
python3-devel
intltool
@@ -177976,7 +177990,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
gtk3-devel
glib2-devel
- thunar
+ thunar
/usr/include
@@ -177988,13 +178002,20 @@ It supports email, address books, calendars, tasks, news feeds and much more.Thunar reference documents
data:doc
- thunar
+ thunar
/usr/share/gtk-doc
+
+ 2022-07-10
+ 4.17.9
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2022-06-12
4.17.8
@@ -178426,7 +178447,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels
Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir.
Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania.
- https://archive.xfce.org/src/xfce/xfce4-panel/4.17/xfce4-panel-4.17.1.tar.bz2
+ https://archive.xfce.org/src/xfce/xfce4-panel/4.17/xfce4-panel-4.17.2.tar.bz2
gtk-doc
intltool
@@ -178500,7 +178521,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.glib2-devel
gtk3-devel
libxfce4util-devel
- xfce4-panel
+ xfce4-panel
/usr/include
@@ -178509,6 +178530,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2022-07-10
+ 4.17.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2022-06-12
4.17.1
@@ -239100,6 +239128,67 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
+
+
+ etherape
+ http://etherape.sourceforge.net/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ app:gui
+ network.analyzer
+ Graphical network monitor
+ Grafiksel ağ izleyici
+ etherape is a graphical network monitor with fancy display features.
+ etherape ağ durumunu görsel değişikliklerle gösteren bir ağ izleyicisidir.
+ etherape
+ mirrors://sourceforge/etherape/etherape-0.9.20.tar.gz
+
+ gtk3-devel
+ popt-devel
+ glib2-devel
+ libpcap-devel
+ libglade-devel
+ goocanvas-devel
+ gnome-doc-utils
+ gdk-pixbuf-devel
+
+ network/analyzer/etherape/pspec.xml
+
+
+ etherape
+
+ gtk3
+ popt
+ glib2
+ libpcap
+ libglade
+ goocanvas
+ gdk-pixbuf
+
+
+ /etc/etherape
+ /usr/bin
+ /usr/share/applications
+ /usr/share/doc/etherape
+ /usr/share/etherape
+ /usr/share/locale
+ /usr/share/man
+ /usr/share/pixmaps
+
+
+
+
+ 2022-07-10
+ 0.9.20
+ First release
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+
+
gnu-netcat
@@ -239414,6 +239503,91 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
+
+
+ nmap
+ https://nmap.org/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ network.analyzer
+ Utility for network exploration or security auditing
+ Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araç
+ Nmap is a utility for network exploration or security auditing.
+ Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araçtır. Konsoldan yapacağınız sorgulamalarla ağınızda hangi makinaların açık/erişilebilir olduğunu, makinalarda hangi portlarda hangi hizmet protokollerinin ve uygulamaların çalıştığını, karşı makinada hangi işletim sisteminin yüklü olduğunu ve bağlantının hangi aygıt ile gerçekleştiğini öğrenebilirsiniz.
+ nmap
+ https://nmap.org/dist/nmap-7.92.tar.bz2
+
+ subversion-devel
+ libpcap-devel
+ openssl-devel
+ zlib-devel
+ lua-devel
+ apr-devel
+ gcc
+
+
+ nmap-4.75-include.patch
+ nmap-5.10_beta1-string.patch
+ nmap-5.21-python.patch
+
+ network/analyzer/nmap/pspec.xml
+
+
+ nmap
+ app:console
+
+ subversion
+ libpcap
+ openssl
+ libgcc
+ zlib
+ lua
+ apr
+
+
+ /usr/bin
+ /usr/share/ncat
+ /usr/share/nmap
+ /usr/share/nping
+ /usr/share/man
+ /usr/share/doc
+ /usr/share/pixmaps
+
+
+ nmap.png
+
+
+
+ zenmap
+ zenmap is the graphical frontend for nmap
+ zenmap, nmap aracı için grafik arabirim yazılımıdır
+ app:gui
+
+ nmap
+ python-gtk
+ xdg-utils
+
+
+ /usr/bin/zenmap
+ /usr/share/man/man1/zenmap.1
+ /usr/lib/python*/site-packages
+ /usr/share/zenmap
+ /usr/share/applications
+
+
+
+
+ 2012-09-01
+ 7.92
+ First release
+ Kamil Atlı
+ suvarice@gmail.com
+
+
+
openslp
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index 4d16c80c32..c3a76ade2e 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-fb347f791fd1f4c05a636f6f21c6d64132466746
\ No newline at end of file
+ae8e5bb4264dc98c072b69dd4237060d15138867
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 2a14448c3e..cda0dc9c7d 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 7f117ac9a4..db90ec5e3d 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-74bb2fd0d04e06722b50f21322576feb577c2972
\ No newline at end of file
+758bda943b586d4de5b43e73bbf6955ee4a3b6f8
\ No newline at end of file