Hinzugefuegt:

* CM zu den Credits
  * NTOP
  * Lynx
  * iftop


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@166 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2006-06-07 20:31:04 +00:00
parent 27e4cd2f8f
commit 3e45cc09a2
19 changed files with 660 additions and 205 deletions

View File

@@ -19,7 +19,7 @@
* Linux-PAM-0.99.3.0
* Locale-Codes-2.07
* MIME-tools-5.420
* Mail-SpamAssassin-3.1.1
* Mail-SpamAssassin-3.1.3
* MailTools-1.74
* Net-DNS-0.47
* Net-IPv4Addr-0.10
@@ -105,6 +105,7 @@
* htop-0.6.2
* iana-etc-2.00
* ibod
* iftop-0.17
* inetutils-1.4.2
* ipac-ng-1.31
* ipaddr-1.2
@@ -134,6 +135,7 @@
* linux-atm-2.4.1
* logrotate-3.7
* logwatch-6.1.2
* lynx2.8.5
* lzo-2.02
* m4-1.4
* mailx-12.0
@@ -158,6 +160,7 @@
* nfs-utils-1.0.8
* nmap-4.03
* noip_updater_v1.6
* ntop-3.2
* ntp-4.2.0
* oinkmaster-1.2
* openh323-Mimas_patch2

View File

@@ -36,8 +36,8 @@ Projektleiter - Michael Tremer
(<a href='mailto:m.s.tremer\@gmail.com'>m.s.tremer\@gmail.com</a>)<br />
Projektmitglied &amp; Sponsor - Detlef Lampart
(<a href='mailto:info\@delaco.de'>info\@delaco.de</a>)<br />
Projektmitglied &amp; Developer - Heiner Irgendwas...
(<a href='mailto:email\@fehlt.com'>email\@fehlt.com</a>)<br />
Projektmitglied &amp; Developer - Heiner Schmeling
(<a href='mailto:cm\@ipfire.eu'>cm\@ipfire.eu</a>)<br />
Projektmitglied &amp; Supporter - Silvio Rechenbach
(<a href='mailto:sr\@tne.de'>sr\@tne.de</a>)<br />
Sponsor - Karsten Rechenbach

79
lfs/iftop Normal file
View File

@@ -0,0 +1,79 @@
###############################################################################
# This file is part of the IPCop Firewall. #
# #
# IPCop is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPCop is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPCop; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Makefiles are based on LFSMake, which is #
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 0.17
THISAPP = iftop-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 5e1619b13f8a05af6b5eaf9e9123c35f
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr
cd $(DIR_APP) && make
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -68,11 +68,11 @@ objects =$(DL_FILE) \
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
openswan-1.0.10rc2.tar.gz = $(URL_IPFIRE)/openswan-1.0.10rc2.tar.gz
patch-o-matic-ng-20060206.tar.bz2 = ftp://ftp.netfilter.org/pub/patch-o-matic-ng/snapshot/patch-o-matic-ng-20060206.tar.bz2
iptables-1.3.5.tar.bz2 = http://www.netfilter.org/files/iptables-1.3.5.tar.bz2
kbc_option_2420.patch = http://developer.osdl.org/rddunlap/patches/kbc_option_2420.patch
net4801.kernel.patch_2.4.31 = http://www.sk-tech.net/support/net4801.kernel.patch_2.4.31
netfilter-layer7-v2.1.tar.gz = http://belnet.dl.sourceforge.net/sourceforge/l7-filter/netfilter-layer7-v2.1.tar.gz
patch-o-matic-ng-20060206.tar.bz2 = $(URL_IPFIRE)/patch-o-matic-ng-20060206.tar.bz2
iptables-1.3.5.tar.bz2 = $(URL_IPFIRE)/iptables-1.3.5.tar.bz2
kbc_option_2420.patch = $(URL_IPFIRE)/kbc_option_2420.patch
net4801.kernel.patch_2.4.31 = $(URL_IPFIRE)/net4801.kernel.patch_2.4.31
netfilter-layer7-v2.1.tar.gz = $(URL_IPFIRE)/netfilter-layer7-v2.1.tar.gz
$(DL_FILE)_MD5 = ea3f99fc82617886059d58d0644dab26
openswan-1.0.10rc2.tar.gz_MD5 = 20d51ff963da78f826f4e0f0ebc4bcef
@@ -186,7 +186,7 @@ endif
# Cleanup kernel source
cd $(DIR_APP) && make mrproper
ifeq "$(ROOT)" ""
ifeq "$(LFS_PASS)" "ipcop"
ifeq "$(LFS_PASS)" "ipfire"
ifeq "$(SMP)" ""
cp $(DIR_SRC)/config/kernel/kernel.config.$(MACHINE) $(DIR_APP)/.config
endif

83
lfs/lynx Normal file
View File

@@ -0,0 +1,83 @@
###############################################################################
# This file is part of the IPCop Firewall. #
# #
# IPCop is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPCop is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPCop; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Makefiles are based on LFSMake, which is #
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 2.8.5
THISAPP = lynx$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/lynx2-8-5
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 5f516a10596bd52c677f9bfd9579bc28
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
dist:
make-packages.sh lynx $(THISAPP)-ipfire-beta-1
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr --libdir=/etc --with-zlib --with-bzlib
cd $(DIR_APP) && make
cd $(DIR_APP) && make docdir=/usr/share/doc/lynx-2.8.5/doc helpdir=/usr/share/doc/lynx-2.8.5/help install-full
cd $(DIR_APP) && chgrp -v -R root /usr/share/doc/lynx-2.8.5/doc
@rm -rf $(DIR_APP)
@$(POSTBUILD)

82
lfs/ntop Normal file
View File

@@ -0,0 +1,82 @@
###############################################################################
# This file is part of the IPCop Firewall. #
# #
# IPCop is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPCop is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPCop; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Makefiles are based on LFSMake, which is #
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 3.2
THISAPP = ntop-$(VER)
DL_FILE = $(THISAPP).tgz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = cd29a876b34a7dd76555e9acd8f160bb
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
dist:
make-packages.sh ntop $(THISAPP)-ipfire-beta-1
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc
cd $(DIR_APP) && make
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)

26
make.sh
View File

@@ -335,8 +335,7 @@ ipcopmake() {
ipfiredist() {
if [ -f $BASEDIR/build/usr/src/lfs/$1 ]; then
ls $BASEDIR/packages/$1* >& /dev/null
if [ $? -eq 1 ]; then
if [ ! `ls -w1 $BASEDIR/packages/*.tar.gz | grep $1` ]; then
echo "`date -u '+%b %e %T'`: Packaging $1" | tee -a $LOGFILE
cp -f $BASEDIR/src/scripts/make-packages.sh $BASEDIR/build/usr/local/bin
chroot $LFS /tools/bin/env -i HOME=/root \
@@ -354,9 +353,9 @@ ipfiredist() {
if [ $? -ne 0 ]; then
exiterror "Packaging $1"
fi
else
echo -e "`date -u '+%b %e %T'`: Package with name $1 already exists!" | tee -a $LOGFILE
fi
else
echo "`date -u '+%b %e %T'`: Packaging: The package $1 already exists"
fi
else
exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
fi
@@ -527,8 +526,8 @@ buildipcop() {
if [ 'i386' = $MACHINE ]; then
# abuse the SMP flag, and make an minimal installer kernel first
# so that the boot floppy always works.....
ipcopmake linux LFS_PASS=ipcop SMP=installer
ipcopmake linux LFS_PASS=ipcop SMP=1
ipcopmake linux LFS_PASS=ipfire SMP=installer
ipcopmake linux LFS_PASS=ipfire SMP=1
ipcopmake 3cp4218 SMP=1
ipcopmake amedyn SMP=1
ipcopmake cxacru SMP=1
@@ -548,7 +547,7 @@ buildipcop() {
ipcopmake unicorn SMP=1
fi
ipcopmake linux LFS_PASS=ipcop
ipcopmake linux LFS_PASS=ipfire
ipcopmake 3cp4218
ipcopmake amedyn
ipcopmake cxacru
@@ -693,6 +692,10 @@ buildipcop() {
ipcopmake openh323
ipcopmake wget
ipcopmake bridge-utils
ipcopmake screen
ipcopmake hddtemp
ipcopmake htop
ipcopmake lynx
echo -ne "`date -u '+%b %e %T'`: Building ### Mailserver ### \n" | tee -a $LOGFILE
ipcopmake postfix
ipcopmake procmail
@@ -713,17 +716,17 @@ buildipcop() {
ipcopmake applejuice
ipcopmake edonkeyclc
ipcopmake sane
echo -ne "`date -u '+%b %e %T'`: Building ### Net-Tools ### \n" | tee -a $LOGFILE
ipcopmake ntop
ipcopmake rsync
ipcopmake tcpwrapper
ipcopmake portmap
ipcopmake screen
ipcopmake nmap
ipcopmake htop
ipcopmake iftop
ipcopmake nfs
ipcopmake ncftp
ipcopmake cftp
ipcopmake ethereal
ipcopmake hddtemp
# ipcopmake stunnel # Ausgeschaltet, weil wir es doch nicht nutzen
}
@@ -840,6 +843,7 @@ ipfirepackages() {
ipfiredist libtiff
ipfiredist libxml2
ipfiredist mc
ipfiredist ntop
ipfiredist postfix
ipfiredist pwlib
ipfiredist samba

View File

@@ -8018,7 +8018,7 @@ usr/bin/gawk
lib/libncurses.so.5
lib/libncurses.so.5.4
#usr/bin/captoinfo
#usr/bin/clear
usr/bin/clear
#usr/bin/infocmp
#usr/bin/infotocap
#usr/bin/reset

0
src/paks/lynx/ROOTFILES Normal file
View File

0
src/paks/ntop/CONFFILES Normal file
View File

388
src/paks/ntop/ROOTFILES Normal file
View File

@@ -0,0 +1,388 @@
etc/ntop
etc/ntop/etter.finger.os.gz
etc/ntop/ntop-cert.pem
etc/ntop/oui.txt.gz
etc/ntop/p2c.opt.table.gz
etc/ntop/specialMAC.txt.gz
usr/bin/ntop
usr/lib/libicmpPlugin-3.2.so
#usr/lib/libicmpPlugin.a
usr/lib/libicmpPlugin.so
usr/lib/liblastSeenPlugin-3.2.so
#usr/lib/liblastSeenPlugin.a
usr/lib/liblastSeenPlugin.so
usr/lib/libmyrrd-3.2.so
#usr/lib/libmyrrd.a
#usr/lib/libmyrrd.la
usr/lib/libmyrrd.so
usr/lib/libnetflowPlugin-3.2.so
#usr/lib/libnetflowPlugin.a
usr/lib/libnetflowPlugin.so
usr/lib/libntop-3.2.so
#usr/lib/libntop.a
usr/lib/libntop.la
usr/lib/libntop.so
usr/lib/libntopreport-3.2.so
#usr/lib/libntopreport.a
#usr/lib/libntopreport.la
usr/lib/libntopreport.so
usr/lib/libpdaPlugin-3.2.so
#usr/lib/libpdaPlugin.a
usr/lib/libpdaPlugin.so
usr/lib/librrdPlugin-3.2.so
#usr/lib/librrdPlugin.a
usr/lib/librrdPlugin.so
usr/lib/libsflowPlugin-3.2.so
#usr/lib/libsflowPlugin.a
usr/lib/libsflowPlugin.so
usr/lib/libsnmpPlugin-3.2.so
#usr/lib/libsnmpPlugin.a
usr/lib/libsnmpPlugin.so
usr/lib/libxmldumpPlugin-3.2.so
#usr/lib/libxmldumpPlugin.a
usr/lib/libxmldumpPlugin.so
usr/lib/ntop
usr/lib/ntop/plugins
usr/lib/ntop/plugins/icmpPlugin.so
usr/lib/ntop/plugins/lastSeenPlugin.so
usr/lib/ntop/plugins/netflowPlugin.so
usr/lib/ntop/plugins/pdaPlugin.so
usr/lib/ntop/plugins/rrdPlugin.so
usr/lib/ntop/plugins/sflowPlugin.so
usr/lib/ntop/plugins/snmpPlugin.so
usr/lib/ntop/plugins/xmldumpPlugin.so
usr/lib/plugins
#usr/share/man/man8/ntop.8
usr/share/ntop
usr/share/ntop/html
usr/share/ntop/html/JSCookMenu.js
usr/share/ntop/html/Risk_high.gif
usr/share/ntop/html/Risk_low.gif
usr/share/ntop/html/Risk_medium.gif
usr/share/ntop/html/Risk_unknown.gif
usr/share/ntop/html/antenna.gif
usr/share/ntop/html/arrow.gif
usr/share/ntop/html/arrow_down.gif
usr/share/ntop/html/arrow_up.gif
usr/share/ntop/html/back.gif
usr/share/ntop/html/bar.gif
usr/share/ntop/html/bg_line.gif
usr/share/ntop/html/black.gif
usr/share/ntop/html/blank.gif
usr/share/ntop/html/bottom_corner.gif
usr/share/ntop/html/bridge.gif
usr/share/ntop/html/brocade.gif
usr/share/ntop/html/bug.png
usr/share/ntop/html/bulb.gif
usr/share/ntop/html/card.gif
usr/share/ntop/html/child.gif
usr/share/ntop/html/clear.gif
usr/share/ntop/html/clock.gif
usr/share/ntop/html/collapsed.gif
usr/share/ntop/html/copyright.png
usr/share/ntop/html/corner.gif
usr/share/ntop/html/deleteURL.gif
usr/share/ntop/html/deleteUser.gif
usr/share/ntop/html/disk.gif
usr/share/ntop/html/dns.gif
usr/share/ntop/html/download.gif
usr/share/ntop/html/dump.html
usr/share/ntop/html/emulex.gif
usr/share/ntop/html/error.gif
usr/share/ntop/html/expanded.gif
usr/share/ntop/html/faq.html
usr/share/ntop/html/favicon.ico
usr/share/ntop/html/fback.gif
usr/share/ntop/html/fforward.gif
usr/share/ntop/html/forward.gif
usr/share/ntop/html/functions.js
usr/share/ntop/html/gauge.jpg
usr/share/ntop/html/gaugeR.jpg
usr/share/ntop/html/gaugeS.jpg
usr/share/ntop/html/graph.gif
usr/share/ntop/html/gray_bg.gif
usr/share/ntop/html/help.html
usr/share/ntop/html/help.png
usr/share/ntop/html/hostSortNote.html
usr/share/ntop/html/info.gif
usr/share/ntop/html/initiator.gif
usr/share/ntop/html/lock.png
usr/share/ntop/html/mail.gif
usr/share/ntop/html/major.gif
usr/share/ntop/html/marchio_unipi_pant541_144.gif
usr/share/ntop/html/menubar.png
usr/share/ntop/html/menubar_j.png
usr/share/ntop/html/menuline.png
usr/share/ntop/html/minor.gif
usr/share/ntop/html/modifyUser.gif
usr/share/ntop/html/multihomed.gif
usr/share/ntop/html/multivlaned.gif
usr/share/ntop/html/nboxLogo.gif
usr/share/ntop/html/ntop.gif
usr/share/ntop/html/ntop.html
usr/share/ntop/html/ntop_logo.gif
usr/share/ntop/html/ntopdump.dtd
usr/share/ntop/html/ntophelp.html
usr/share/ntop/html/p2p.gif
usr/share/ntop/html/phone.gif
usr/share/ntop/html/pie-error.png
usr/share/ntop/html/printer.gif
usr/share/ntop/html/privacyNotice.html
usr/share/ntop/html/question.gif
usr/share/ntop/html/router.gif
usr/share/ntop/html/seagate.gif
usr/share/ntop/html/spacer.gif
usr/share/ntop/html/statsicons
usr/share/ntop/html/statsicons/flags
usr/share/ntop/html/statsicons/flags/ad.gif
usr/share/ntop/html/statsicons/flags/ae.gif
usr/share/ntop/html/statsicons/flags/af.gif
usr/share/ntop/html/statsicons/flags/ag.gif
usr/share/ntop/html/statsicons/flags/ai.gif
usr/share/ntop/html/statsicons/flags/al.gif
usr/share/ntop/html/statsicons/flags/am.gif
usr/share/ntop/html/statsicons/flags/an.gif
usr/share/ntop/html/statsicons/flags/ao.gif
usr/share/ntop/html/statsicons/flags/aq.gif
usr/share/ntop/html/statsicons/flags/ar.gif
usr/share/ntop/html/statsicons/flags/as.gif
usr/share/ntop/html/statsicons/flags/at.gif
usr/share/ntop/html/statsicons/flags/au.gif
usr/share/ntop/html/statsicons/flags/aw.gif
usr/share/ntop/html/statsicons/flags/az.gif
usr/share/ntop/html/statsicons/flags/ba.gif
usr/share/ntop/html/statsicons/flags/bb.gif
usr/share/ntop/html/statsicons/flags/bd.gif
usr/share/ntop/html/statsicons/flags/be.gif
usr/share/ntop/html/statsicons/flags/bf.gif
usr/share/ntop/html/statsicons/flags/bg.gif
usr/share/ntop/html/statsicons/flags/bh.gif
usr/share/ntop/html/statsicons/flags/bi.gif
usr/share/ntop/html/statsicons/flags/bj.gif
usr/share/ntop/html/statsicons/flags/bm.gif
usr/share/ntop/html/statsicons/flags/bn.gif
usr/share/ntop/html/statsicons/flags/bo.gif
usr/share/ntop/html/statsicons/flags/br.gif
usr/share/ntop/html/statsicons/flags/bs.gif
usr/share/ntop/html/statsicons/flags/bt.gif
usr/share/ntop/html/statsicons/flags/bv.gif
usr/share/ntop/html/statsicons/flags/bw.gif
usr/share/ntop/html/statsicons/flags/by.gif
usr/share/ntop/html/statsicons/flags/bz.gif
usr/share/ntop/html/statsicons/flags/ca.gif
usr/share/ntop/html/statsicons/flags/cc.gif
usr/share/ntop/html/statsicons/flags/cd.gif
usr/share/ntop/html/statsicons/flags/cf.gif
usr/share/ntop/html/statsicons/flags/cg.gif
usr/share/ntop/html/statsicons/flags/ch.gif
usr/share/ntop/html/statsicons/flags/ci.gif
usr/share/ntop/html/statsicons/flags/ck.gif
usr/share/ntop/html/statsicons/flags/cl.gif
usr/share/ntop/html/statsicons/flags/cm.gif
usr/share/ntop/html/statsicons/flags/cn.gif
usr/share/ntop/html/statsicons/flags/co.gif
usr/share/ntop/html/statsicons/flags/com.gif
usr/share/ntop/html/statsicons/flags/cr.gif
usr/share/ntop/html/statsicons/flags/cu.gif
usr/share/ntop/html/statsicons/flags/cv.gif
usr/share/ntop/html/statsicons/flags/cx.gif
usr/share/ntop/html/statsicons/flags/cy.gif
usr/share/ntop/html/statsicons/flags/cz.gif
usr/share/ntop/html/statsicons/flags/de.gif
usr/share/ntop/html/statsicons/flags/dj.gif
usr/share/ntop/html/statsicons/flags/dk.gif
usr/share/ntop/html/statsicons/flags/dm.gif
usr/share/ntop/html/statsicons/flags/do.gif
usr/share/ntop/html/statsicons/flags/dz.gif
usr/share/ntop/html/statsicons/flags/ec.gif
usr/share/ntop/html/statsicons/flags/edu.gif
usr/share/ntop/html/statsicons/flags/ee.gif
usr/share/ntop/html/statsicons/flags/eg.gif
usr/share/ntop/html/statsicons/flags/eh.gif
usr/share/ntop/html/statsicons/flags/es.gif
usr/share/ntop/html/statsicons/flags/et.gif
usr/share/ntop/html/statsicons/flags/eu.gif
usr/share/ntop/html/statsicons/flags/fi.gif
usr/share/ntop/html/statsicons/flags/fj.gif
usr/share/ntop/html/statsicons/flags/fk.gif
usr/share/ntop/html/statsicons/flags/fm.gif
usr/share/ntop/html/statsicons/flags/fo.gif
usr/share/ntop/html/statsicons/flags/fr.gif
usr/share/ntop/html/statsicons/flags/fx.gif
usr/share/ntop/html/statsicons/flags/ga.gif
usr/share/ntop/html/statsicons/flags/gb.gif
usr/share/ntop/html/statsicons/flags/gd.gif
usr/share/ntop/html/statsicons/flags/ge.gif
usr/share/ntop/html/statsicons/flags/gf.gif
usr/share/ntop/html/statsicons/flags/gh.gif
usr/share/ntop/html/statsicons/flags/gi.gif
usr/share/ntop/html/statsicons/flags/gl.gif
usr/share/ntop/html/statsicons/flags/gm.gif
usr/share/ntop/html/statsicons/flags/gn.gif
usr/share/ntop/html/statsicons/flags/gov.gif
usr/share/ntop/html/statsicons/flags/gp.gif
usr/share/ntop/html/statsicons/flags/gq.gif
usr/share/ntop/html/statsicons/flags/gr.gif
usr/share/ntop/html/statsicons/flags/gt.gif
usr/share/ntop/html/statsicons/flags/gu.gif
usr/share/ntop/html/statsicons/flags/gw.gif
usr/share/ntop/html/statsicons/flags/gy.gif
usr/share/ntop/html/statsicons/flags/hk.gif
usr/share/ntop/html/statsicons/flags/hm.gif
usr/share/ntop/html/statsicons/flags/hn.gif
usr/share/ntop/html/statsicons/flags/hr.gif
usr/share/ntop/html/statsicons/flags/ht.gif
usr/share/ntop/html/statsicons/flags/hu.gif
usr/share/ntop/html/statsicons/flags/id.gif
usr/share/ntop/html/statsicons/flags/ie.gif
usr/share/ntop/html/statsicons/flags/il.gif
usr/share/ntop/html/statsicons/flags/in.gif
usr/share/ntop/html/statsicons/flags/int.gif
usr/share/ntop/html/statsicons/flags/io.gif
usr/share/ntop/html/statsicons/flags/iq.gif
usr/share/ntop/html/statsicons/flags/ir.gif
usr/share/ntop/html/statsicons/flags/is.gif
usr/share/ntop/html/statsicons/flags/it.gif
usr/share/ntop/html/statsicons/flags/jm.gif
usr/share/ntop/html/statsicons/flags/jo.gif
usr/share/ntop/html/statsicons/flags/jp.gif
usr/share/ntop/html/statsicons/flags/ke.gif
usr/share/ntop/html/statsicons/flags/kg.gif
usr/share/ntop/html/statsicons/flags/kh.gif
usr/share/ntop/html/statsicons/flags/ki.gif
usr/share/ntop/html/statsicons/flags/km.gif
usr/share/ntop/html/statsicons/flags/kn.gif
usr/share/ntop/html/statsicons/flags/kp.gif
usr/share/ntop/html/statsicons/flags/kr.gif
usr/share/ntop/html/statsicons/flags/kw.gif
usr/share/ntop/html/statsicons/flags/ky.gif
usr/share/ntop/html/statsicons/flags/kz.gif
usr/share/ntop/html/statsicons/flags/la.gif
usr/share/ntop/html/statsicons/flags/lb.gif
usr/share/ntop/html/statsicons/flags/lc.gif
usr/share/ntop/html/statsicons/flags/li.gif
usr/share/ntop/html/statsicons/flags/lk.gif
usr/share/ntop/html/statsicons/flags/local.gif
usr/share/ntop/html/statsicons/flags/localhost.gif
usr/share/ntop/html/statsicons/flags/lr.gif
usr/share/ntop/html/statsicons/flags/ls.gif
usr/share/ntop/html/statsicons/flags/lt.gif
usr/share/ntop/html/statsicons/flags/lu.gif
usr/share/ntop/html/statsicons/flags/lv.gif
usr/share/ntop/html/statsicons/flags/ly.gif
usr/share/ntop/html/statsicons/flags/ma.gif
usr/share/ntop/html/statsicons/flags/mc.gif
usr/share/ntop/html/statsicons/flags/md.gif
usr/share/ntop/html/statsicons/flags/mil.gif
usr/share/ntop/html/statsicons/flags/mk.gif
usr/share/ntop/html/statsicons/flags/ml.gif
usr/share/ntop/html/statsicons/flags/mn.gif
usr/share/ntop/html/statsicons/flags/mo.gif
usr/share/ntop/html/statsicons/flags/mq.gif
usr/share/ntop/html/statsicons/flags/mr.gif
usr/share/ntop/html/statsicons/flags/mt.gif
usr/share/ntop/html/statsicons/flags/mu.gif
usr/share/ntop/html/statsicons/flags/mx.gif
usr/share/ntop/html/statsicons/flags/my.gif
usr/share/ntop/html/statsicons/flags/mz.gif
usr/share/ntop/html/statsicons/flags/na.gif
usr/share/ntop/html/statsicons/flags/ne.gif
usr/share/ntop/html/statsicons/flags/net.gif
usr/share/ntop/html/statsicons/flags/ng.gif
usr/share/ntop/html/statsicons/flags/ni.gif
usr/share/ntop/html/statsicons/flags/nl.gif
usr/share/ntop/html/statsicons/flags/no.gif
usr/share/ntop/html/statsicons/flags/np.gif
usr/share/ntop/html/statsicons/flags/nu.gif
usr/share/ntop/html/statsicons/flags/nz.gif
usr/share/ntop/html/statsicons/flags/om.gif
usr/share/ntop/html/statsicons/flags/org.gif
usr/share/ntop/html/statsicons/flags/pa.gif
usr/share/ntop/html/statsicons/flags/pe.gif
usr/share/ntop/html/statsicons/flags/pf.gif
usr/share/ntop/html/statsicons/flags/pg.gif
usr/share/ntop/html/statsicons/flags/ph.gif
usr/share/ntop/html/statsicons/flags/pk.gif
usr/share/ntop/html/statsicons/flags/pl.gif
usr/share/ntop/html/statsicons/flags/pr.gif
usr/share/ntop/html/statsicons/flags/ps.gif
usr/share/ntop/html/statsicons/flags/pt.gif
usr/share/ntop/html/statsicons/flags/py.gif
usr/share/ntop/html/statsicons/flags/qa.gif
usr/share/ntop/html/statsicons/flags/ro.gif
usr/share/ntop/html/statsicons/flags/ru.gif
usr/share/ntop/html/statsicons/flags/rw.gif
usr/share/ntop/html/statsicons/flags/sa.gif
usr/share/ntop/html/statsicons/flags/sb.gif
usr/share/ntop/html/statsicons/flags/sd.gif
usr/share/ntop/html/statsicons/flags/se.gif
usr/share/ntop/html/statsicons/flags/sg.gif
usr/share/ntop/html/statsicons/flags/si.gif
usr/share/ntop/html/statsicons/flags/sk.gif
usr/share/ntop/html/statsicons/flags/sm.gif
usr/share/ntop/html/statsicons/flags/sn.gif
usr/share/ntop/html/statsicons/flags/su.gif
usr/share/ntop/html/statsicons/flags/sv.gif
usr/share/ntop/html/statsicons/flags/sy.gif
usr/share/ntop/html/statsicons/flags/sz.gif
usr/share/ntop/html/statsicons/flags/tc.gif
usr/share/ntop/html/statsicons/flags/td.gif
usr/share/ntop/html/statsicons/flags/tf.gif
usr/share/ntop/html/statsicons/flags/tg.gif
usr/share/ntop/html/statsicons/flags/th.gif
usr/share/ntop/html/statsicons/flags/tj.gif
usr/share/ntop/html/statsicons/flags/tk.gif
usr/share/ntop/html/statsicons/flags/tm.gif
usr/share/ntop/html/statsicons/flags/tn.gif
usr/share/ntop/html/statsicons/flags/to.gif
usr/share/ntop/html/statsicons/flags/tr.gif
usr/share/ntop/html/statsicons/flags/tt.gif
usr/share/ntop/html/statsicons/flags/tw.gif
usr/share/ntop/html/statsicons/flags/tz.gif
usr/share/ntop/html/statsicons/flags/ua.gif
usr/share/ntop/html/statsicons/flags/uk.gif
usr/share/ntop/html/statsicons/flags/us.gif
usr/share/ntop/html/statsicons/flags/uy.gif
usr/share/ntop/html/statsicons/flags/uz.gif
usr/share/ntop/html/statsicons/flags/va.gif
usr/share/ntop/html/statsicons/flags/vc.gif
usr/share/ntop/html/statsicons/flags/ve.gif
usr/share/ntop/html/statsicons/flags/vg.gif
usr/share/ntop/html/statsicons/flags/vi.gif
usr/share/ntop/html/statsicons/flags/vn.gif
usr/share/ntop/html/statsicons/flags/wf.gif
usr/share/ntop/html/statsicons/flags/ws.gif
usr/share/ntop/html/statsicons/flags/ye.gif
usr/share/ntop/html/statsicons/flags/yu.gif
usr/share/ntop/html/statsicons/flags/za.gif
usr/share/ntop/html/statsicons/flags/ze.gif
usr/share/ntop/html/statsicons/flags/zm.gif
usr/share/ntop/html/statsicons/flags/zw.gif
usr/share/ntop/html/statsicons/os
usr/share/ntop/html/statsicons/os/aix.gif
usr/share/ntop/html/statsicons/os/amiga.gif
usr/share/ntop/html/statsicons/os/be.gif
usr/share/ntop/html/statsicons/os/bsd.gif
usr/share/ntop/html/statsicons/os/cisco.gif
usr/share/ntop/html/statsicons/os/hp.gif
usr/share/ntop/html/statsicons/os/irix.gif
usr/share/ntop/html/statsicons/os/linux.gif
usr/share/ntop/html/statsicons/os/mac.gif
usr/share/ntop/html/statsicons/os/novell.gif
usr/share/ntop/html/statsicons/os/os2.gif
usr/share/ntop/html/statsicons/os/sun.gif
usr/share/ntop/html/statsicons/os/windows.gif
usr/share/ntop/html/style.css
usr/share/ntop/html/switch.gif
usr/share/ntop/html/theme.css
usr/share/ntop/html/theme.js
usr/share/ntop/html/upload.gif
usr/share/ntop/html/url.gif
usr/share/ntop/html/user.gif
usr/share/ntop/html/users.gif
usr/share/ntop/html/vgauge.jpg
usr/share/ntop/html/warning.gif
usr/share/ntop/html/web.gif
usr/share/ntop/html/wheel.gif
usr/share/ntop/html/white_bg.gif
usr/var/ntop

View File

@@ -8,5 +8,4 @@
#
# Extract the files
tar xfz files.tgz -C /
tar xfz conf.tgz -C /
cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2

View File

@@ -1,172 +0,0 @@
usr/bin/ptlib-config
#usr/include/ptbuildopts.h
#usr/include/ptclib
#usr/include/ptclib/asnber.h
#usr/include/ptclib/asner.h
#usr/include/ptclib/asnper.h
#usr/include/ptclib/asnxer.h
#usr/include/ptclib/cypher.h
#usr/include/ptclib/delaychan.h
#usr/include/ptclib/dtmf.h
#usr/include/ptclib/enum.h
#usr/include/ptclib/ftp.h
#usr/include/ptclib/html.h
#usr/include/ptclib/http.h
#usr/include/ptclib/httpform.h
#usr/include/ptclib/httpsvc.h
#usr/include/ptclib/inetmail.h
#usr/include/ptclib/inetprot.h
#usr/include/ptclib/ipacl.h
#usr/include/ptclib/memfile.h
#usr/include/ptclib/mime.h
#usr/include/ptclib/modem.h
#usr/include/ptclib/pasn.h
#usr/include/ptclib/pdns.h
#usr/include/ptclib/pils.h
#usr/include/ptclib/pldap.h
#usr/include/ptclib/psasl.h
#usr/include/ptclib/psnmp.h
#usr/include/ptclib/psoap.h
#usr/include/ptclib/pssl.h
#usr/include/ptclib/pstun.h
#usr/include/ptclib/ptts.h
#usr/include/ptclib/pwavfile.h
#usr/include/ptclib/pxml.h
#usr/include/ptclib/pxmlrpc.h
#usr/include/ptclib/pxmlrpcs.h
#usr/include/ptclib/qchannel.h
#usr/include/ptclib/random.h
#usr/include/ptclib/shttpsvc.h
#usr/include/ptclib/socks.h
#usr/include/ptclib/telnet.h
#usr/include/ptclib/url.h
#usr/include/ptclib/vsdl.h
#usr/include/ptclib/vxml.h
#usr/include/ptclib/xmpp.h
#usr/include/ptclib/xmpp_c2s.h
#usr/include/ptclib/xmpp_muc.h
#usr/include/ptclib/xmpp_roster.h
#usr/include/ptlib
#usr/include/ptlib.h
#usr/include/ptlib/MacMainIf.h
#usr/include/ptlib/args.h
#usr/include/ptlib/array.h
#usr/include/ptlib/channel.h
#usr/include/ptlib/conchan.h
#usr/include/ptlib/config.h
#usr/include/ptlib/contain.h
#usr/include/ptlib/contain.inl
#usr/include/ptlib/critsec.h
#usr/include/ptlib/dict.h
#usr/include/ptlib/dynalink.h
#usr/include/ptlib/ethsock.h
#usr/include/ptlib/file.h
#usr/include/ptlib/filepath.h
#usr/include/ptlib/icmpsock.h
#usr/include/ptlib/indchan.h
#usr/include/ptlib/int64.h
#usr/include/ptlib/ipdsock.h
#usr/include/ptlib/ipsock.h
#usr/include/ptlib/ipxsock.h
#usr/include/ptlib/lists.h
#usr/include/ptlib/mail.h
#usr/include/ptlib/mutex.h
#usr/include/ptlib/notifier.h
#usr/include/ptlib/notifier_ext.h
#usr/include/ptlib/object.h
#usr/include/ptlib/osutil.inl
#usr/include/ptlib/pdirect.h
#usr/include/ptlib/pfactory.h
#usr/include/ptlib/pipechan.h
#usr/include/ptlib/plugin.h
#usr/include/ptlib/pluginmgr.h
#usr/include/ptlib/pprocess.h
#usr/include/ptlib/psharedptr.h
#usr/include/ptlib/pstring.h
#usr/include/ptlib/ptime.h
#usr/include/ptlib/qos.h
#usr/include/ptlib/remconn.h
#usr/include/ptlib/safecoll.h
#usr/include/ptlib/semaphor.h
#usr/include/ptlib/serchan.h
#usr/include/ptlib/sfile.h
#usr/include/ptlib/smartptr.h
#usr/include/ptlib/socket.h
#usr/include/ptlib/sockets.h
#usr/include/ptlib/sound.h
#usr/include/ptlib/spxsock.h
#usr/include/ptlib/svcproc.h
#usr/include/ptlib/syncpoint.h
#usr/include/ptlib/syncthrd.h
#usr/include/ptlib/tcpsock.h
#usr/include/ptlib/textfile.h
#usr/include/ptlib/thread.h
#usr/include/ptlib/timeint.h
#usr/include/ptlib/timer.h
#usr/include/ptlib/udpsock.h
#usr/include/ptlib/unix
#usr/include/ptlib/unix/ptlib
#usr/include/ptlib/unix/ptlib/beaudio.h
#usr/include/ptlib/unix/ptlib/bevideo.h
#usr/include/ptlib/unix/ptlib/channel.h
#usr/include/ptlib/unix/ptlib/conchan.h
#usr/include/ptlib/unix/ptlib/config.h
#usr/include/ptlib/unix/ptlib/contain.h
#usr/include/ptlib/unix/ptlib/critsec.h
#usr/include/ptlib/unix/ptlib/dynalink.h
#usr/include/ptlib/unix/ptlib/ethsock.h
#usr/include/ptlib/unix/ptlib/file.h
#usr/include/ptlib/unix/ptlib/filepath.h
#usr/include/ptlib/unix/ptlib/icmpsock.h
#usr/include/ptlib/unix/ptlib/ipdsock.h
#usr/include/ptlib/unix/ptlib/ipsock.h
#usr/include/ptlib/unix/ptlib/maccoreaudio.h
#usr/include/ptlib/unix/ptlib/mutex.h
#usr/include/ptlib/unix/ptlib/pdirect.h
#usr/include/ptlib/unix/ptlib/pipechan.h
#usr/include/ptlib/unix/ptlib/pmachdep.h
#usr/include/ptlib/unix/ptlib/pprocess.h
#usr/include/ptlib/unix/ptlib/ptime.h
#usr/include/ptlib/unix/ptlib/ptlib.inl
#usr/include/ptlib/unix/ptlib/remconn.h
#usr/include/ptlib/unix/ptlib/resampler.h
#usr/include/ptlib/unix/ptlib/semaphor.h
#usr/include/ptlib/unix/ptlib/serchan.h
#usr/include/ptlib/unix/ptlib/sfile.h
#usr/include/ptlib/unix/ptlib/socket.h
#usr/include/ptlib/unix/ptlib/sound.h
#usr/include/ptlib/unix/ptlib/svcproc.h
#usr/include/ptlib/unix/ptlib/syncpoint.h
#usr/include/ptlib/unix/ptlib/tcpsock.h
#usr/include/ptlib/unix/ptlib/textfile.h
#usr/include/ptlib/unix/ptlib/thread.h
#usr/include/ptlib/unix/ptlib/timeint.h
#usr/include/ptlib/unix/ptlib/timer.h
#usr/include/ptlib/unix/ptlib/udpsock.h
#usr/include/ptlib/unix/ptlib/video.h
#usr/include/ptlib/unix/ptlib/videoio.h
#usr/include/ptlib/unix/ptlib/videoio1394avc.h
#usr/include/ptlib/vconvert.h
#usr/include/ptlib/video.h
#usr/include/ptlib/videoio.h
#usr/include/ptlib/videoio1394dc.h
usr/lib/libpt.so
usr/lib/libpt_linux_x86_r.so
usr/lib/libpt_linux_x86_r.so.1
usr/lib/libpt_linux_x86_r.so.1.8
usr/lib/libpt_linux_x86_r.so.1.8.7
#usr/share/pwlib
#usr/share/pwlib/make
#usr/share/pwlib/make/common.mak
#usr/share/pwlib/make/defaultgui.mak
#usr/share/pwlib/make/gui.mak
#usr/share/pwlib/make/lib.mak
#usr/share/pwlib/make/motif.mak
#usr/share/pwlib/make/plugins.mak
#usr/share/pwlib/make/ptbuildopts.mak
#usr/share/pwlib/make/ptlib-config
#usr/share/pwlib/make/ptlib.mak
#usr/share/pwlib/make/pwlib.mak
#usr/share/pwlib/make/qt.mak
#usr/share/pwlib/make/unix.mak
#usr/share/pwlib/make/xlib.mak

View File

@@ -1 +0,0 @@
etc/sudoers

View File

@@ -1,10 +0,0 @@
#etc/sudoers
usr/bin/sudo
usr/bin/sudoedit
usr/lib/sudo_noexec.la
usr/lib/sudo_noexec.so
usr/sbin/visudo
#usr/share/man/man5/sudoers.5
#usr/share/man/man8/sudo.8
#usr/share/man/man8/sudoedit.8
#usr/share/man/man8/visudo.8