mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 02:12:58 +02:00
Hinzugefügt:
* fetchmail * cyrusimap Geändert: * xampp * pam git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@106 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -37,6 +37,7 @@
|
||||
* cdrtools-2.01
|
||||
* coreutils-5.93
|
||||
* cxacru-2003-10-05
|
||||
* cyrus-imapd-2.2.12
|
||||
* cyrus-sasl-2.1.21
|
||||
* cyrus-sasl-2.1.21-ldap
|
||||
* db-4.4.20
|
||||
@@ -59,6 +60,7 @@
|
||||
* fcdslslusb-suse8.2-03.11.04
|
||||
* fcdslusb-suse8.2-03.11.02
|
||||
* fcron-2.0.2
|
||||
* fetchmail-6.3.4
|
||||
* file-4.16
|
||||
* findutils-4.1.20
|
||||
* flex-2.5.4a
|
||||
@@ -148,12 +150,10 @@
|
||||
* psmisc-21.4
|
||||
* pulsar-4.0.19
|
||||
* pwlib-ipfire1
|
||||
* pwlib-ipfire1
|
||||
* rp-pppoe-3.5
|
||||
* rrdtool-1.0.49
|
||||
* samba-3.0.22
|
||||
* sane-backends-1.0.17
|
||||
* sane-backends-1.0.17_1st
|
||||
* sed-4.0.9
|
||||
* setserial-2.17
|
||||
* shadow-4.0.4.1
|
||||
|
||||
83
lfs/cyrusimap
Normal file
83
lfs/cyrusimap
Normal 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.2.12
|
||||
|
||||
THISAPP = cyrus-imapd-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 70b3bba526a8d36d3bb23a87d37e9188
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
make-packages.sh cyrusimap $(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 --with-auth=unix --with-perl --with-sasl --without-ucdsnmp
|
||||
cd $(DIR_APP) && make depend
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
89
lfs/fetchmail
Normal file
89
lfs/fetchmail
Normal file
@@ -0,0 +1,89 @@
|
||||
###############################################################################
|
||||
# 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 = 6.3.4
|
||||
|
||||
THISAPP = fetchmail-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = http://download2.berlios.de/fetchmail
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 35ded0414fcff79b492d6ade2ce48911
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
make-packages.sh fetchmail $(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 jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --with-ssl --disable-nls # --enable-fallback=procmail
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
echo "set logfile /var/log/fetchmail.log" > ~/.fetchmailrc
|
||||
echo "set no bouncemail" >> ~/.fetchmailrc
|
||||
echo "set postmaster root" >> ~/.fetchmailrc
|
||||
echo ""
|
||||
echo "#poll SERVERNAME :" >> ~/.fetchmailrc
|
||||
echo "# user <username> pass <password>;" >> ~/.fetchmailrc
|
||||
echo "# mda "/usr/bin/procmail -f %F -d %T";" >> ~/.fetchmailrc
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
2
lfs/pam
2
lfs/pam
@@ -83,7 +83,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
--sbindir=/lib/security \
|
||||
--enable-securedir=/lib/security \
|
||||
--enable-docdir=/usr/share/doc/Linux-PAM-0.99.3.0 \
|
||||
--enable-read-both-confs
|
||||
--enable-read-both-confs --disable-nls
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make check
|
||||
cd $(DIR_APP) && make install
|
||||
|
||||
@@ -18,12 +18,6 @@
|
||||
# Makefiles are based on LFSMake, which is #
|
||||
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
|
||||
# #
|
||||
# Modifications by: #
|
||||
# ??-12-2003 Mark Wormgoor < mark@wormgoor.com> #
|
||||
# - Modified Makefile for IPCop build #
|
||||
# #
|
||||
# $Id: ntp,v 1.6.2.3 2005/02/05 15:38:15 gespinasse Exp $
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
@@ -64,6 +58,9 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
make-packages.sh xampp $(THISAPP)-ipfire-beta-1
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
12
make.sh
12
make.sh
@@ -356,8 +356,8 @@ ipfiredist() {
|
||||
else
|
||||
exiterror "No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
|
||||
fi
|
||||
test -d $BASEDIR/packages || mkdir $BASEDIR/packages
|
||||
mv -f $BASEDIR/build/paks/* $BASEDIR/packages/
|
||||
# test -d $BASEDIR/packages || mkdir $BASEDIR/packages
|
||||
# mv -f $BASEDIR/build/paks/* $BASEDIR/packages/
|
||||
return 0
|
||||
}
|
||||
|
||||
@@ -667,6 +667,8 @@ buildipcop() {
|
||||
ipcopmake wget
|
||||
ipcopmake bridge-utils
|
||||
ipcopmake postfix
|
||||
ipcopmake fetchmail
|
||||
ipcopmake cyrusimap
|
||||
ipcopmake stund
|
||||
ipcopmake lpd
|
||||
ipcopmake openvpn
|
||||
@@ -766,16 +768,20 @@ buildpackages() {
|
||||
|
||||
# Build IPFire packages
|
||||
ipfiredist asterisk
|
||||
ipfiredist cyrusimap
|
||||
ipfiredist fetchmail
|
||||
ipfiredist libtiff
|
||||
ipfiredist libxml2
|
||||
ipfiredist mc
|
||||
ipfiredist postfix
|
||||
ipfiredist pwlib
|
||||
ipfiredist sane
|
||||
ipfiredist spandsp
|
||||
ipfiredist sudo
|
||||
ipfiredist xampp
|
||||
ipfiredist xinetd
|
||||
test -d $BASEDIR/packages || mkdir $BASEDIR/packages
|
||||
cp -f $LFS/paks/* $BASEDIR/packages >> $LOGFILE 2>&1
|
||||
cp -f $LFS/paks/*.tar.gz $LFS/paks/*.md5 $BASEDIR/packages >> $LOGFILE 2>&1
|
||||
|
||||
# Cleanup
|
||||
stdumount
|
||||
|
||||
0
src/paks/cyrusimap/CONFFILES
Normal file
0
src/paks/cyrusimap/CONFFILES
Normal file
137
src/paks/cyrusimap/ROOTFILES
Normal file
137
src/paks/cyrusimap/ROOTFILES
Normal file
@@ -0,0 +1,137 @@
|
||||
usr/bin/cyradm
|
||||
usr/bin/imtest
|
||||
usr/bin/installsieve
|
||||
usr/bin/lmtptest
|
||||
usr/bin/mupdatetest
|
||||
usr/bin/nntptest
|
||||
usr/bin/pop3test
|
||||
usr/bin/sieveshell
|
||||
usr/bin/sivtest
|
||||
usr/bin/smtptest
|
||||
usr/cyrus
|
||||
usr/cyrus/bin
|
||||
usr/cyrus/bin/arbitron
|
||||
usr/cyrus/bin/chk_cyrus
|
||||
usr/cyrus/bin/ctl_cyrusdb
|
||||
usr/cyrus/bin/ctl_deliver
|
||||
usr/cyrus/bin/ctl_mboxlist
|
||||
usr/cyrus/bin/cvt_cyrusdb
|
||||
usr/cyrus/bin/cyr_expire
|
||||
usr/cyrus/bin/cyrdump
|
||||
usr/cyrus/bin/deliver
|
||||
usr/cyrus/bin/fud
|
||||
usr/cyrus/bin/imapd
|
||||
usr/cyrus/bin/ipurge
|
||||
usr/cyrus/bin/lmtpd
|
||||
usr/cyrus/bin/master
|
||||
usr/cyrus/bin/mbexamine
|
||||
usr/cyrus/bin/mbpath
|
||||
usr/cyrus/bin/notifyd
|
||||
usr/cyrus/bin/pop3d
|
||||
usr/cyrus/bin/pop3proxyd
|
||||
usr/cyrus/bin/quota
|
||||
usr/cyrus/bin/reconstruct
|
||||
usr/cyrus/bin/sievec
|
||||
usr/cyrus/bin/smmapd
|
||||
usr/cyrus/bin/squatter
|
||||
usr/cyrus/bin/timsieved
|
||||
usr/cyrus/bin/tls_prune
|
||||
#usr/include/cyrus
|
||||
#usr/include/cyrus/acl.h
|
||||
#usr/include/cyrus/assert.h
|
||||
#usr/include/cyrus/auth.h
|
||||
#usr/include/cyrus/bsearch.h
|
||||
#usr/include/cyrus/charset.h
|
||||
#usr/include/cyrus/cyrusdb.h
|
||||
#usr/include/cyrus/glob.h
|
||||
#usr/include/cyrus/gmtoff.h
|
||||
#usr/include/cyrus/hash.h
|
||||
#usr/include/cyrus/imapopts.h
|
||||
#usr/include/cyrus/imapurl.h
|
||||
#usr/include/cyrus/imclient.h
|
||||
#usr/include/cyrus/imparse.h
|
||||
#usr/include/cyrus/iptostring.h
|
||||
#usr/include/cyrus/libconfig.h
|
||||
#usr/include/cyrus/libcyr_cfg.h
|
||||
#usr/include/cyrus/lock.h
|
||||
#usr/include/cyrus/lsort.h
|
||||
#usr/include/cyrus/map.h
|
||||
#usr/include/cyrus/mkgmtime.h
|
||||
#usr/include/cyrus/mpool.h
|
||||
#usr/include/cyrus/nonblock.h
|
||||
#usr/include/cyrus/parseaddr.h
|
||||
#usr/include/cyrus/prot.h
|
||||
#usr/include/cyrus/retry.h
|
||||
#usr/include/cyrus/rfc822date.h
|
||||
#usr/include/cyrus/strhash.h
|
||||
#usr/include/cyrus/strhash.o
|
||||
#usr/include/cyrus/stristr.h
|
||||
#usr/include/cyrus/sysexits.h
|
||||
#usr/include/cyrus/util.h
|
||||
#usr/include/cyrus/xmalloc.h
|
||||
usr/lib/libcyrus.a
|
||||
usr/lib/libcyrus_min.a
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/IMAP
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/IMAP.pm
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/IMAP/Admin.pm
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/IMAP/IMSP.pm
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/IMAP/Shell.pm
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/SIEVE
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/Cyrus/SIEVE/managesieve.pm
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/IMAP
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/IMAP/.packlist
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/IMAP/IMAP.bs
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/IMAP/IMAP.so
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/SIEVE
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/SIEVE/managesieve
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/SIEVE/managesieve/.packlist
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/SIEVE/managesieve/managesieve.bs
|
||||
usr/lib/perl5/site_perl/5.8.5/i386-linux/auto/Cyrus/SIEVE/managesieve/managesieve.so
|
||||
#usr/share/man/man1/cyradm.1
|
||||
#usr/share/man/man1/imtest.1
|
||||
#usr/share/man/man1/installsieve.1
|
||||
#usr/share/man/man1/lmtptest.1
|
||||
#usr/share/man/man1/mupdatetest.1
|
||||
#usr/share/man/man1/nntptest.1
|
||||
#usr/share/man/man1/pop3test.1
|
||||
#usr/share/man/man1/sieveshell.1
|
||||
#usr/share/man/man1/sivtest.1
|
||||
#usr/share/man/man1/smtptest.1
|
||||
#usr/share/man/man3/Cyrus::IMAP.3
|
||||
#usr/share/man/man3/Cyrus::IMAP::Admin.3
|
||||
#usr/share/man/man3/Cyrus::IMAP::IMSP.3
|
||||
#usr/share/man/man3/Cyrus::IMAP::Shell.3
|
||||
#usr/share/man/man3/Cyrus::SIEVE::managesieve.3
|
||||
#usr/share/man/man3/imclient.3
|
||||
#usr/share/man/man5/cyrus.conf.5
|
||||
#usr/share/man/man5/imapd.conf.5
|
||||
#usr/share/man/man5/krb.equiv.5
|
||||
#usr/share/man/man8/arbitron.8
|
||||
#usr/share/man/man8/chk_cyrus.8
|
||||
#usr/share/man/man8/ctl_cyrusdb.8
|
||||
#usr/share/man/man8/ctl_deliver.8
|
||||
#usr/share/man/man8/ctl_mboxlist.8
|
||||
#usr/share/man/man8/cvt_cyrusdb.8
|
||||
#usr/share/man/man8/cyr_expire.8
|
||||
#usr/share/man/man8/deliver.8
|
||||
#usr/share/man/man8/fetchnews.8
|
||||
#usr/share/man/man8/fud.8
|
||||
#usr/share/man/man8/idled.8
|
||||
#usr/share/man/man8/imapd.8
|
||||
#usr/share/man/man8/ipurge.8
|
||||
#usr/share/man/man8/lmtpd.8
|
||||
#usr/share/man/man8/mbexamine.8
|
||||
#usr/share/man/man8/mbpath.8
|
||||
#usr/share/man/man8/nntpd.8
|
||||
#usr/share/man/man8/notifyd.8
|
||||
#usr/share/man/man8/pop3d.8
|
||||
#usr/share/man/man8/quota.8
|
||||
#usr/share/man/man8/reconstruct.8
|
||||
#usr/share/man/man8/rmnews.8
|
||||
#usr/share/man/man8/smmapd.8
|
||||
#usr/share/man/man8/squatter.8
|
||||
#usr/share/man/man8/syncnews.8
|
||||
#usr/share/man/man8/timsieved.8
|
||||
#usr/share/man/man8/tls_prune.8
|
||||
11
src/paks/cyrusimap/install.sh
Normal file
11
src/paks/cyrusimap/install.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Extract the files
|
||||
tar xfz files.tgz -C /
|
||||
cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2
|
||||
10
src/paks/cyrusimap/uninstall.sh
Normal file
10
src/paks/cyrusimap/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Delete the files
|
||||
## Befehl fehlt noch
|
||||
rm -f /opt/pakfire/installed/ROOTFILES.$2
|
||||
0
src/paks/fetchmail/CONFFILES
Normal file
0
src/paks/fetchmail/CONFFILES
Normal file
0
src/paks/fetchmail/ROOTFILES
Normal file
0
src/paks/fetchmail/ROOTFILES
Normal file
11
src/paks/fetchmail/install.sh
Normal file
11
src/paks/fetchmail/install.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Extract the files
|
||||
tar xfz files.tgz -C /
|
||||
cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2
|
||||
10
src/paks/fetchmail/uninstall.sh
Normal file
10
src/paks/fetchmail/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Delete the files
|
||||
## Befehl fehlt noch
|
||||
rm -f /opt/pakfire/installed/ROOTFILES.$2
|
||||
@@ -0,0 +1,58 @@
|
||||
etc/sane.d
|
||||
etc/sane.d/abaton.conf
|
||||
etc/sane.d/agfafocus.conf
|
||||
etc/sane.d/apple.conf
|
||||
etc/sane.d/artec.conf
|
||||
etc/sane.d/artec_eplus48u.conf
|
||||
etc/sane.d/avision.conf
|
||||
etc/sane.d/bh.conf
|
||||
etc/sane.d/canon.conf
|
||||
etc/sane.d/canon630u.conf
|
||||
etc/sane.d/coolscan.conf
|
||||
etc/sane.d/coolscan2.conf
|
||||
etc/sane.d/dc210.conf
|
||||
etc/sane.d/dc240.conf
|
||||
etc/sane.d/dc25.conf
|
||||
etc/sane.d/dll.conf
|
||||
etc/sane.d/dmc.conf
|
||||
etc/sane.d/epson.conf
|
||||
etc/sane.d/fujitsu.conf
|
||||
etc/sane.d/genesys.conf
|
||||
etc/sane.d/gt68xx.conf
|
||||
etc/sane.d/hp.conf
|
||||
etc/sane.d/hp4200.conf
|
||||
etc/sane.d/hp5400.conf
|
||||
etc/sane.d/ibm.conf
|
||||
etc/sane.d/leo.conf
|
||||
etc/sane.d/lexmark.conf
|
||||
etc/sane.d/ma1509.conf
|
||||
etc/sane.d/matsushita.conf
|
||||
etc/sane.d/microtek.conf
|
||||
etc/sane.d/microtek2.conf
|
||||
etc/sane.d/mustek.conf
|
||||
etc/sane.d/mustek_usb.conf
|
||||
etc/sane.d/nec.conf
|
||||
etc/sane.d/net.conf
|
||||
etc/sane.d/pie.conf
|
||||
etc/sane.d/plustek.conf
|
||||
etc/sane.d/plustek_pp.conf
|
||||
etc/sane.d/qcam.conf
|
||||
etc/sane.d/ricoh.conf
|
||||
etc/sane.d/s9036.conf
|
||||
etc/sane.d/saned.conf
|
||||
etc/sane.d/sceptre.conf
|
||||
etc/sane.d/sharp.conf
|
||||
etc/sane.d/sm3840.conf
|
||||
etc/sane.d/snapscan.conf
|
||||
etc/sane.d/sp15c.conf
|
||||
etc/sane.d/st400.conf
|
||||
etc/sane.d/tamarack.conf
|
||||
etc/sane.d/teco1.conf
|
||||
etc/sane.d/teco2.conf
|
||||
etc/sane.d/teco3.conf
|
||||
etc/sane.d/test.conf
|
||||
etc/sane.d/u12.conf
|
||||
etc/sane.d/umax.conf
|
||||
etc/sane.d/umax1220u.conf
|
||||
etc/sane.d/umax_pp.conf
|
||||
etc/sane.d/v4l.conf
|
||||
@@ -0,0 +1,430 @@
|
||||
usr/bin/gamma4scanimage
|
||||
usr/bin/sane-config
|
||||
usr/bin/sane-find-scanner
|
||||
usr/bin/scanimage
|
||||
+usr/include/sane
|
||||
+usr/include/sane/sane.h
|
||||
#usr/include/sane/saneopts.h
|
||||
usr/lib/libsane.la
|
||||
usr/lib/libsane.so
|
||||
usr/lib/libsane.so.1
|
||||
usr/lib/libsane.so.1.0.17
|
||||
usr/lib/sane
|
||||
usr/lib/sane/libsane-abaton.la
|
||||
usr/lib/sane/libsane-abaton.so
|
||||
usr/lib/sane/libsane-abaton.so.1
|
||||
usr/lib/sane/libsane-abaton.so.1.0.17
|
||||
usr/lib/sane/libsane-agfafocus.la
|
||||
usr/lib/sane/libsane-agfafocus.so
|
||||
usr/lib/sane/libsane-agfafocus.so.1
|
||||
usr/lib/sane/libsane-agfafocus.so.1.0.17
|
||||
usr/lib/sane/libsane-apple.la
|
||||
usr/lib/sane/libsane-apple.so
|
||||
usr/lib/sane/libsane-apple.so.1
|
||||
usr/lib/sane/libsane-apple.so.1.0.17
|
||||
usr/lib/sane/libsane-artec.la
|
||||
usr/lib/sane/libsane-artec.so
|
||||
usr/lib/sane/libsane-artec.so.1
|
||||
usr/lib/sane/libsane-artec.so.1.0.17
|
||||
usr/lib/sane/libsane-artec_eplus48u.la
|
||||
usr/lib/sane/libsane-artec_eplus48u.so
|
||||
usr/lib/sane/libsane-artec_eplus48u.so.1
|
||||
usr/lib/sane/libsane-artec_eplus48u.so.1.0.17
|
||||
usr/lib/sane/libsane-as6e.la
|
||||
usr/lib/sane/libsane-as6e.so
|
||||
usr/lib/sane/libsane-as6e.so.1
|
||||
usr/lib/sane/libsane-as6e.so.1.0.17
|
||||
usr/lib/sane/libsane-avision.la
|
||||
usr/lib/sane/libsane-avision.so
|
||||
usr/lib/sane/libsane-avision.so.1
|
||||
usr/lib/sane/libsane-avision.so.1.0.17
|
||||
usr/lib/sane/libsane-bh.la
|
||||
usr/lib/sane/libsane-bh.so
|
||||
usr/lib/sane/libsane-bh.so.1
|
||||
usr/lib/sane/libsane-bh.so.1.0.17
|
||||
usr/lib/sane/libsane-canon.la
|
||||
usr/lib/sane/libsane-canon.so
|
||||
usr/lib/sane/libsane-canon.so.1
|
||||
usr/lib/sane/libsane-canon.so.1.0.17
|
||||
usr/lib/sane/libsane-canon630u.la
|
||||
usr/lib/sane/libsane-canon630u.so
|
||||
usr/lib/sane/libsane-canon630u.so.1
|
||||
usr/lib/sane/libsane-canon630u.so.1.0.17
|
||||
usr/lib/sane/libsane-coolscan.la
|
||||
usr/lib/sane/libsane-coolscan.so
|
||||
usr/lib/sane/libsane-coolscan.so.1
|
||||
usr/lib/sane/libsane-coolscan.so.1.0.17
|
||||
usr/lib/sane/libsane-coolscan2.la
|
||||
usr/lib/sane/libsane-coolscan2.so
|
||||
usr/lib/sane/libsane-coolscan2.so.1
|
||||
usr/lib/sane/libsane-coolscan2.so.1.0.17
|
||||
usr/lib/sane/libsane-dc210.la
|
||||
usr/lib/sane/libsane-dc210.so
|
||||
usr/lib/sane/libsane-dc210.so.1
|
||||
usr/lib/sane/libsane-dc210.so.1.0.17
|
||||
usr/lib/sane/libsane-dc240.la
|
||||
usr/lib/sane/libsane-dc240.so
|
||||
usr/lib/sane/libsane-dc240.so.1
|
||||
usr/lib/sane/libsane-dc240.so.1.0.17
|
||||
usr/lib/sane/libsane-dc25.la
|
||||
usr/lib/sane/libsane-dc25.so
|
||||
usr/lib/sane/libsane-dc25.so.1
|
||||
usr/lib/sane/libsane-dc25.so.1.0.17
|
||||
usr/lib/sane/libsane-dll.la
|
||||
usr/lib/sane/libsane-dll.so
|
||||
usr/lib/sane/libsane-dll.so.1
|
||||
usr/lib/sane/libsane-dll.so.1.0.17
|
||||
usr/lib/sane/libsane-dmc.la
|
||||
usr/lib/sane/libsane-dmc.so
|
||||
usr/lib/sane/libsane-dmc.so.1
|
||||
usr/lib/sane/libsane-dmc.so.1.0.17
|
||||
usr/lib/sane/libsane-epson.la
|
||||
usr/lib/sane/libsane-epson.so
|
||||
usr/lib/sane/libsane-epson.so.1
|
||||
usr/lib/sane/libsane-epson.so.1.0.17
|
||||
usr/lib/sane/libsane-fujitsu.la
|
||||
usr/lib/sane/libsane-fujitsu.so
|
||||
usr/lib/sane/libsane-fujitsu.so.1
|
||||
usr/lib/sane/libsane-fujitsu.so.1.0.17
|
||||
usr/lib/sane/libsane-genesys.la
|
||||
usr/lib/sane/libsane-genesys.so
|
||||
usr/lib/sane/libsane-genesys.so.1
|
||||
usr/lib/sane/libsane-genesys.so.1.0.17
|
||||
usr/lib/sane/libsane-gt68xx.la
|
||||
usr/lib/sane/libsane-gt68xx.so
|
||||
usr/lib/sane/libsane-gt68xx.so.1
|
||||
usr/lib/sane/libsane-gt68xx.so.1.0.17
|
||||
usr/lib/sane/libsane-hp.la
|
||||
usr/lib/sane/libsane-hp.so
|
||||
usr/lib/sane/libsane-hp.so.1
|
||||
usr/lib/sane/libsane-hp.so.1.0.17
|
||||
usr/lib/sane/libsane-hp4200.la
|
||||
usr/lib/sane/libsane-hp4200.so
|
||||
usr/lib/sane/libsane-hp4200.so.1
|
||||
usr/lib/sane/libsane-hp4200.so.1.0.17
|
||||
usr/lib/sane/libsane-hp5400.la
|
||||
usr/lib/sane/libsane-hp5400.so
|
||||
usr/lib/sane/libsane-hp5400.so.1
|
||||
usr/lib/sane/libsane-hp5400.so.1.0.17
|
||||
usr/lib/sane/libsane-ibm.la
|
||||
usr/lib/sane/libsane-ibm.so
|
||||
usr/lib/sane/libsane-ibm.so.1
|
||||
usr/lib/sane/libsane-ibm.so.1.0.17
|
||||
usr/lib/sane/libsane-leo.la
|
||||
usr/lib/sane/libsane-leo.so
|
||||
usr/lib/sane/libsane-leo.so.1
|
||||
usr/lib/sane/libsane-leo.so.1.0.17
|
||||
usr/lib/sane/libsane-lexmark.la
|
||||
usr/lib/sane/libsane-lexmark.so
|
||||
usr/lib/sane/libsane-lexmark.so.1
|
||||
usr/lib/sane/libsane-lexmark.so.1.0.17
|
||||
usr/lib/sane/libsane-ma1509.la
|
||||
usr/lib/sane/libsane-ma1509.so
|
||||
usr/lib/sane/libsane-ma1509.so.1
|
||||
usr/lib/sane/libsane-ma1509.so.1.0.17
|
||||
usr/lib/sane/libsane-matsushita.la
|
||||
usr/lib/sane/libsane-matsushita.so
|
||||
usr/lib/sane/libsane-matsushita.so.1
|
||||
usr/lib/sane/libsane-matsushita.so.1.0.17
|
||||
usr/lib/sane/libsane-microtek.la
|
||||
usr/lib/sane/libsane-microtek.so
|
||||
usr/lib/sane/libsane-microtek.so.1
|
||||
usr/lib/sane/libsane-microtek.so.1.0.17
|
||||
usr/lib/sane/libsane-microtek2.la
|
||||
usr/lib/sane/libsane-microtek2.so
|
||||
usr/lib/sane/libsane-microtek2.so.1
|
||||
usr/lib/sane/libsane-microtek2.so.1.0.17
|
||||
usr/lib/sane/libsane-mustek.la
|
||||
usr/lib/sane/libsane-mustek.so
|
||||
usr/lib/sane/libsane-mustek.so.1
|
||||
usr/lib/sane/libsane-mustek.so.1.0.17
|
||||
usr/lib/sane/libsane-mustek_usb.la
|
||||
usr/lib/sane/libsane-mustek_usb.so
|
||||
usr/lib/sane/libsane-mustek_usb.so.1
|
||||
usr/lib/sane/libsane-mustek_usb.so.1.0.17
|
||||
usr/lib/sane/libsane-mustek_usb2.la
|
||||
usr/lib/sane/libsane-mustek_usb2.so
|
||||
usr/lib/sane/libsane-mustek_usb2.so.1
|
||||
usr/lib/sane/libsane-mustek_usb2.so.1.0.17
|
||||
usr/lib/sane/libsane-nec.la
|
||||
usr/lib/sane/libsane-nec.so
|
||||
usr/lib/sane/libsane-nec.so.1
|
||||
usr/lib/sane/libsane-nec.so.1.0.17
|
||||
usr/lib/sane/libsane-net.la
|
||||
usr/lib/sane/libsane-net.so
|
||||
usr/lib/sane/libsane-net.so.1
|
||||
usr/lib/sane/libsane-net.so.1.0.17
|
||||
usr/lib/sane/libsane-niash.la
|
||||
usr/lib/sane/libsane-niash.so
|
||||
usr/lib/sane/libsane-niash.so.1
|
||||
usr/lib/sane/libsane-niash.so.1.0.17
|
||||
usr/lib/sane/libsane-pie.la
|
||||
usr/lib/sane/libsane-pie.so
|
||||
usr/lib/sane/libsane-pie.so.1
|
||||
usr/lib/sane/libsane-pie.so.1.0.17
|
||||
usr/lib/sane/libsane-plustek.la
|
||||
usr/lib/sane/libsane-plustek.so
|
||||
usr/lib/sane/libsane-plustek.so.1
|
||||
usr/lib/sane/libsane-plustek.so.1.0.17
|
||||
usr/lib/sane/libsane-plustek_pp.la
|
||||
usr/lib/sane/libsane-plustek_pp.so
|
||||
usr/lib/sane/libsane-plustek_pp.so.1
|
||||
usr/lib/sane/libsane-plustek_pp.so.1.0.17
|
||||
usr/lib/sane/libsane-qcam.la
|
||||
usr/lib/sane/libsane-qcam.so
|
||||
usr/lib/sane/libsane-qcam.so.1
|
||||
usr/lib/sane/libsane-qcam.so.1.0.17
|
||||
usr/lib/sane/libsane-ricoh.la
|
||||
usr/lib/sane/libsane-ricoh.so
|
||||
usr/lib/sane/libsane-ricoh.so.1
|
||||
usr/lib/sane/libsane-ricoh.so.1.0.17
|
||||
usr/lib/sane/libsane-s9036.la
|
||||
usr/lib/sane/libsane-s9036.so
|
||||
usr/lib/sane/libsane-s9036.so.1
|
||||
usr/lib/sane/libsane-s9036.so.1.0.17
|
||||
usr/lib/sane/libsane-sceptre.la
|
||||
usr/lib/sane/libsane-sceptre.so
|
||||
usr/lib/sane/libsane-sceptre.so.1
|
||||
usr/lib/sane/libsane-sceptre.so.1.0.17
|
||||
usr/lib/sane/libsane-sharp.la
|
||||
usr/lib/sane/libsane-sharp.so
|
||||
usr/lib/sane/libsane-sharp.so.1
|
||||
usr/lib/sane/libsane-sharp.so.1.0.17
|
||||
usr/lib/sane/libsane-sm3600.la
|
||||
usr/lib/sane/libsane-sm3600.so
|
||||
usr/lib/sane/libsane-sm3600.so.1
|
||||
usr/lib/sane/libsane-sm3600.so.1.0.17
|
||||
usr/lib/sane/libsane-sm3840.la
|
||||
usr/lib/sane/libsane-sm3840.so
|
||||
usr/lib/sane/libsane-sm3840.so.1
|
||||
usr/lib/sane/libsane-sm3840.so.1.0.17
|
||||
usr/lib/sane/libsane-snapscan.la
|
||||
usr/lib/sane/libsane-snapscan.so
|
||||
usr/lib/sane/libsane-snapscan.so.1
|
||||
usr/lib/sane/libsane-snapscan.so.1.0.17
|
||||
usr/lib/sane/libsane-sp15c.la
|
||||
usr/lib/sane/libsane-sp15c.so
|
||||
usr/lib/sane/libsane-sp15c.so.1
|
||||
usr/lib/sane/libsane-sp15c.so.1.0.17
|
||||
usr/lib/sane/libsane-st400.la
|
||||
usr/lib/sane/libsane-st400.so
|
||||
usr/lib/sane/libsane-st400.so.1
|
||||
usr/lib/sane/libsane-st400.so.1.0.17
|
||||
usr/lib/sane/libsane-tamarack.la
|
||||
usr/lib/sane/libsane-tamarack.so
|
||||
usr/lib/sane/libsane-tamarack.so.1
|
||||
usr/lib/sane/libsane-tamarack.so.1.0.17
|
||||
usr/lib/sane/libsane-teco1.la
|
||||
usr/lib/sane/libsane-teco1.so
|
||||
usr/lib/sane/libsane-teco1.so.1
|
||||
usr/lib/sane/libsane-teco1.so.1.0.17
|
||||
usr/lib/sane/libsane-teco2.la
|
||||
usr/lib/sane/libsane-teco2.so
|
||||
usr/lib/sane/libsane-teco2.so.1
|
||||
usr/lib/sane/libsane-teco2.so.1.0.17
|
||||
usr/lib/sane/libsane-teco3.la
|
||||
usr/lib/sane/libsane-teco3.so
|
||||
usr/lib/sane/libsane-teco3.so.1
|
||||
usr/lib/sane/libsane-teco3.so.1.0.17
|
||||
usr/lib/sane/libsane-test.la
|
||||
usr/lib/sane/libsane-test.so
|
||||
usr/lib/sane/libsane-test.so.1
|
||||
usr/lib/sane/libsane-test.so.1.0.17
|
||||
usr/lib/sane/libsane-u12.la
|
||||
usr/lib/sane/libsane-u12.so
|
||||
usr/lib/sane/libsane-u12.so.1
|
||||
usr/lib/sane/libsane-u12.so.1.0.17
|
||||
usr/lib/sane/libsane-umax.la
|
||||
usr/lib/sane/libsane-umax.so
|
||||
usr/lib/sane/libsane-umax.so.1
|
||||
usr/lib/sane/libsane-umax.so.1.0.17
|
||||
usr/lib/sane/libsane-umax1220u.la
|
||||
usr/lib/sane/libsane-umax1220u.so
|
||||
usr/lib/sane/libsane-umax1220u.so.1
|
||||
usr/lib/sane/libsane-umax1220u.so.1.0.17
|
||||
usr/lib/sane/libsane-umax_pp.la
|
||||
usr/lib/sane/libsane-umax_pp.so
|
||||
usr/lib/sane/libsane-umax_pp.so.1
|
||||
usr/lib/sane/libsane-umax_pp.so.1.0.17
|
||||
usr/lib/sane/libsane-v4l.la
|
||||
usr/lib/sane/libsane-v4l.so
|
||||
usr/lib/sane/libsane-v4l.so.1
|
||||
usr/lib/sane/libsane-v4l.so.1.0.17
|
||||
usr/sbin/saned
|
||||
#usr/share/doc/sane-1.0.17
|
||||
#usr/share/doc/sane-1.0.17/AUTHORS
|
||||
#usr/share/doc/sane-1.0.17/COPYING
|
||||
#usr/share/doc/sane-1.0.17/ChangeLog
|
||||
#usr/share/doc/sane-1.0.17/LICENSE
|
||||
#usr/share/doc/sane-1.0.17/NEWS
|
||||
#usr/share/doc/sane-1.0.17/PROBLEMS
|
||||
#usr/share/doc/sane-1.0.17/PROJECTS
|
||||
#usr/share/doc/sane-1.0.17/README
|
||||
#usr/share/doc/sane-1.0.17/README.aix
|
||||
#usr/share/doc/sane-1.0.17/README.beos
|
||||
#usr/share/doc/sane-1.0.17/README.darwin
|
||||
#usr/share/doc/sane-1.0.17/README.djpeg
|
||||
#usr/share/doc/sane-1.0.17/README.freebsd
|
||||
#usr/share/doc/sane-1.0.17/README.hp-ux
|
||||
#usr/share/doc/sane-1.0.17/README.linux
|
||||
#usr/share/doc/sane-1.0.17/README.netbsd
|
||||
#usr/share/doc/sane-1.0.17/README.openbsd
|
||||
#usr/share/doc/sane-1.0.17/README.os2
|
||||
#usr/share/doc/sane-1.0.17/README.solaris
|
||||
#usr/share/doc/sane-1.0.17/README.unixware2
|
||||
#usr/share/doc/sane-1.0.17/README.unixware7
|
||||
#usr/share/doc/sane-1.0.17/README.windows
|
||||
#usr/share/doc/sane-1.0.17/README.zeta
|
||||
#usr/share/doc/sane-1.0.17/backend-writing.txt
|
||||
#usr/share/doc/sane-1.0.17/canon
|
||||
#usr/share/doc/sane-1.0.17/canon/canon.changes
|
||||
#usr/share/doc/sane-1.0.17/canon/canon.install2700F.txt
|
||||
#usr/share/doc/sane-1.0.17/gt68xx
|
||||
#usr/share/doc/sane-1.0.17/gt68xx/gt68xx.CHANGES
|
||||
#usr/share/doc/sane-1.0.17/gt68xx/gt68xx.TODO
|
||||
#usr/share/doc/sane-1.0.17/leo
|
||||
#usr/share/doc/sane-1.0.17/leo/leo.txt
|
||||
#usr/share/doc/sane-1.0.17/matsushita
|
||||
#usr/share/doc/sane-1.0.17/matsushita/matsushita.txt
|
||||
#usr/share/doc/sane-1.0.17/mustek
|
||||
#usr/share/doc/sane-1.0.17/mustek/mustek.CHANGES
|
||||
#usr/share/doc/sane-1.0.17/mustek_usb
|
||||
#usr/share/doc/sane-1.0.17/mustek_usb/mustek_usb.CHANGES
|
||||
#usr/share/doc/sane-1.0.17/mustek_usb/mustek_usb.TODO
|
||||
#usr/share/doc/sane-1.0.17/mustek_usb2
|
||||
#usr/share/doc/sane-1.0.17/mustek_usb2/mustek_usb2.CHANGES
|
||||
#usr/share/doc/sane-1.0.17/mustek_usb2/mustek_usb2.TODO
|
||||
#usr/share/doc/sane-1.0.17/niash
|
||||
#usr/share/doc/sane-1.0.17/niash/niash.TODO
|
||||
#usr/share/doc/sane-1.0.17/plustek
|
||||
#usr/share/doc/sane-1.0.17/plustek/FAQ
|
||||
#usr/share/doc/sane-1.0.17/plustek/MakeModule.sh
|
||||
#usr/share/doc/sane-1.0.17/plustek/Makefile.kernel24
|
||||
#usr/share/doc/sane-1.0.17/plustek/Makefile.kernel26
|
||||
#usr/share/doc/sane-1.0.17/plustek/Plustek-PARPORT-TODO.txt
|
||||
#usr/share/doc/sane-1.0.17/plustek/Plustek-PARPORT.changes
|
||||
#usr/share/doc/sane-1.0.17/plustek/Plustek-PARPORT.txt
|
||||
#usr/share/doc/sane-1.0.17/plustek/Plustek-USB-TODO.txt
|
||||
#usr/share/doc/sane-1.0.17/plustek/Plustek-USB.changes
|
||||
#usr/share/doc/sane-1.0.17/plustek/Plustek-USB.txt
|
||||
#usr/share/doc/sane-1.0.17/sane-backends-external.html
|
||||
#usr/share/doc/sane-1.0.17/sane-backends.html
|
||||
#usr/share/doc/sane-1.0.17/sane-mfgs-external.html
|
||||
#usr/share/doc/sane-1.0.17/sane-mfgs.html
|
||||
#usr/share/doc/sane-1.0.17/sceptre
|
||||
#usr/share/doc/sane-1.0.17/sceptre/s1200.txt
|
||||
#usr/share/doc/sane-1.0.17/teco
|
||||
#usr/share/doc/sane-1.0.17/teco/teco1.txt
|
||||
#usr/share/doc/sane-1.0.17/teco/teco2.txt
|
||||
#usr/share/doc/sane-1.0.17/teco/teco3.txt
|
||||
#usr/share/doc/sane-1.0.17/u12
|
||||
#usr/share/doc/sane-1.0.17/u12/U12.changes
|
||||
#usr/share/doc/sane-1.0.17/u12/U12.todo
|
||||
#usr/share/doc/sane-1.0.17/umax
|
||||
#usr/share/doc/sane-1.0.17/umax/negative-types.txt
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-logo.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-advanced-options-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-advanced.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-astra-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-config-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-histogram.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-mirage-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-not-listed-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-others-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-parport-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-powerlook-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-scanner-clones-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-speed-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-standard-options-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-standard.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-text.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-text2.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-text4.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-uc-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax-vista-doc.html
|
||||
#usr/share/doc/sane-1.0.17/umax/sane-umax.jpg
|
||||
#usr/share/doc/sane-1.0.17/umax/umax.BUGS
|
||||
#usr/share/doc/sane-1.0.17/umax/umax.CHANGES
|
||||
#usr/share/doc/sane-1.0.17/umax/umax.FAQ
|
||||
#usr/share/doc/sane-1.0.17/umax/umax.TODO
|
||||
#usr/share/man/man1/gamma4scanimage.1
|
||||
#usr/share/man/man1/sane-config.1
|
||||
#usr/share/man/man1/sane-find-scanner.1
|
||||
#usr/share/man/man1/scanimage.1
|
||||
#usr/share/man/man5/sane-abaton.5
|
||||
#usr/share/man/man5/sane-agfafocus.5
|
||||
#usr/share/man/man5/sane-apple.5
|
||||
#usr/share/man/man5/sane-artec.5
|
||||
#usr/share/man/man5/sane-artec_eplus48u.5
|
||||
#usr/share/man/man5/sane-as6e.5
|
||||
#usr/share/man/man5/sane-avision.5
|
||||
#usr/share/man/man5/sane-bh.5
|
||||
#usr/share/man/man5/sane-canon.5
|
||||
#usr/share/man/man5/sane-canon630u.5
|
||||
#usr/share/man/man5/sane-canon_pp.5
|
||||
#usr/share/man/man5/sane-coolscan.5
|
||||
#usr/share/man/man5/sane-coolscan2.5
|
||||
#usr/share/man/man5/sane-dc210.5
|
||||
#usr/share/man/man5/sane-dc240.5
|
||||
#usr/share/man/man5/sane-dc25.5
|
||||
#usr/share/man/man5/sane-dll.5
|
||||
#usr/share/man/man5/sane-dmc.5
|
||||
#usr/share/man/man5/sane-epson.5
|
||||
#usr/share/man/man5/sane-fujitsu.5
|
||||
#usr/share/man/man5/sane-genesys.5
|
||||
#usr/share/man/man5/sane-gphoto2.5
|
||||
#usr/share/man/man5/sane-gt68xx.5
|
||||
#usr/share/man/man5/sane-hp.5
|
||||
#usr/share/man/man5/sane-hp4200.5
|
||||
#usr/share/man/man5/sane-hp5400.5
|
||||
#usr/share/man/man5/sane-hpsj5s.5
|
||||
#usr/share/man/man5/sane-ibm.5
|
||||
#usr/share/man/man5/sane-leo.5
|
||||
#usr/share/man/man5/sane-lexmark.5
|
||||
#usr/share/man/man5/sane-ma1509.5
|
||||
#usr/share/man/man5/sane-matsushita.5
|
||||
#usr/share/man/man5/sane-microtek.5
|
||||
#usr/share/man/man5/sane-microtek2.5
|
||||
#usr/share/man/man5/sane-mustek.5
|
||||
#usr/share/man/man5/sane-mustek_pp.5
|
||||
#usr/share/man/man5/sane-mustek_usb.5
|
||||
#usr/share/man/man5/sane-mustek_usb2.5
|
||||
#usr/share/man/man5/sane-nec.5
|
||||
#usr/share/man/man5/sane-net.5
|
||||
#usr/share/man/man5/sane-niash.5
|
||||
#usr/share/man/man5/sane-pie.5
|
||||
#usr/share/man/man5/sane-pint.5
|
||||
#usr/share/man/man5/sane-plustek.5
|
||||
#usr/share/man/man5/sane-plustek_pp.5
|
||||
#usr/share/man/man5/sane-pnm.5
|
||||
#usr/share/man/man5/sane-qcam.5
|
||||
#usr/share/man/man5/sane-ricoh.5
|
||||
#usr/share/man/man5/sane-s9036.5
|
||||
#usr/share/man/man5/sane-sceptre.5
|
||||
#usr/share/man/man5/sane-scsi.5
|
||||
#usr/share/man/man5/sane-sharp.5
|
||||
#usr/share/man/man5/sane-sm3600.5
|
||||
#usr/share/man/man5/sane-sm3840.5
|
||||
#usr/share/man/man5/sane-snapscan.5
|
||||
#usr/share/man/man5/sane-sp15c.5
|
||||
#usr/share/man/man5/sane-st400.5
|
||||
#usr/share/man/man5/sane-tamarack.5
|
||||
#usr/share/man/man5/sane-teco1.5
|
||||
#usr/share/man/man5/sane-teco2.5
|
||||
#usr/share/man/man5/sane-teco3.5
|
||||
#usr/share/man/man5/sane-test.5
|
||||
#usr/share/man/man5/sane-u12.5
|
||||
#usr/share/man/man5/sane-umax.5
|
||||
#usr/share/man/man5/sane-umax1220u.5
|
||||
#usr/share/man/man5/sane-umax_pp.5
|
||||
#usr/share/man/man5/sane-usb.5
|
||||
#usr/share/man/man5/sane-v4l.5
|
||||
#usr/share/man/man7/sane.7
|
||||
#usr/share/man/man8/saned.8
|
||||
#usr/share/sane
|
||||
#usr/share/sane/artec_eplus48u
|
||||
#usr/share/sane/gt68xx
|
||||
#usr/share/sane/snapscan
|
||||
usr/var/lock
|
||||
usr/var/lock/sane
|
||||
|
||||
@@ -21,4 +21,6 @@ tar cvfz /paks/$1/conf.tgz --files=/usr/src/src/paks/$1/CONFFILES --exclude='#*
|
||||
cd /paks/$1 && tar cvfz ../$2.tar.gz files.tgz conf.tgz install.sh uninstall.sh
|
||||
cd .. && md5sum $2.tar.gz >> $2.tar.gz.md5
|
||||
|
||||
rm -r /paks/$1
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user