add package and index
add package, iftop, minicom,tcdump, focuswirter
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#!/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 setup():
|
||||
pisitools.cflags.add("-fcommon")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
pisitools.dosbin("iftop")
|
||||
pisitools.doman("iftop.8")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README*", "COPYING")
|
||||
@@ -0,0 +1,59 @@
|
||||
|
||||
# Sets the network interface to if.
|
||||
# interface: if
|
||||
interface: wlan0
|
||||
|
||||
# Controls reverse lookup of IP addresses.
|
||||
# dns-resolution: (yes|no)
|
||||
dns-resolution: yes
|
||||
|
||||
# Controls conversion of port numbers to service names.
|
||||
# port-resolution: (yes|no)
|
||||
port-resolution: yes
|
||||
|
||||
# Sets the filter code to bpf.
|
||||
# filter-code: bpf
|
||||
|
||||
# Controls display of bar graphs.
|
||||
# show-bars: (yes|no)
|
||||
show-bars: yes
|
||||
|
||||
# Puts the interface into promiscuous mode.
|
||||
# promiscuous: (yes|no)
|
||||
|
||||
# Controls display of port numbers.
|
||||
# port-display: (off|source-only|destination-only|on)
|
||||
port-display: on
|
||||
|
||||
# Hides source host names.
|
||||
# hide-source: (yes|no)
|
||||
|
||||
# Hides destination host names.
|
||||
# hide-destination: (yes|no)
|
||||
|
||||
# Use bytes for bandwidth display, rather than bits.
|
||||
# use-bytes: (yes|no)
|
||||
use-bytes: yes
|
||||
|
||||
# Sets which column is used to sort the display.
|
||||
# sort: (2s|10s|40s|source|destination)
|
||||
|
||||
# Controls the appearance of each item in the display.
|
||||
# line-display: (two-line|one-line-both|one-line-sent|one-line-received)
|
||||
|
||||
# Shows cummulative total for each item.
|
||||
# show-totals: (yes|no)
|
||||
show-totals: yes
|
||||
|
||||
# Use a logarithmic scale for bar graphs.
|
||||
# log-scale: (yes|no)
|
||||
|
||||
# Fixes the maximum for the bar graph scale to bw, e.g. "10M"
|
||||
# max-bandwidth: bw
|
||||
|
||||
# Defines an IP network boundary for determining packet direction.
|
||||
# net-filter: net/mask
|
||||
|
||||
# Sets a regular expression to filter screen output.
|
||||
# screen-filter: regexp
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>iftop</Name>
|
||||
<Homepage>http://www.ex-parrot.com/~pdw/iftop/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Bandwidth monitor</Summary>
|
||||
<Description>iftop displays bandwidth usage on an interface.</Description>
|
||||
<Archive sha1sum="7f8e16ea26a0dee37ec9d1cbcef7b27692036572" type="targz">http://www.ex-parrot.com/~pdw/iftop/download/iftop-1.0pre4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libpcap-devel</Dependency>
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--<Patches>
|
||||
<Patch level="1">bar_in_bytes.patch</Patch>
|
||||
</Patches>-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>iftop</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libpcap</Dependency>
|
||||
<Dependency>ncurses</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="doc">/usr/share/doc/iftop</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/doc/iftop/iftoprc">iftoprc</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2016-03-02</Date>
|
||||
<Version>1.0.4</Version>
|
||||
<Comment>Rebuilt with docker</Comment>
|
||||
<Name>İbrahim KARAGÜZEL</Name>
|
||||
<Email>karaguzelibrahim@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-26</Date>
|
||||
<Version>1.0.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-09-01</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>iftop</Name>
|
||||
<Summary xml:lang="tr">Bantgenişliği izleyicisi</Summary>
|
||||
<Description xml:lang="tr">iftop ağ bağlantılarınız üzerindeki veri akışını gösterir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user