mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
MONSTER-REVISION!
* Alte und ueberfluessige Pakete entfernt. * Proxy-Pfade gefixt. * MySQL in ISO gepackt. * Apache2-Konfigurations-Fix. * XAMPP entfernt. STILL EXPERIMENTAL * make.sh aufgeraeumt. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@293 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
Timeout 300
|
||||
ServerSignature on
|
||||
UseCanonicalName off
|
||||
ServerTokens OS
|
||||
ServerTokens Full
|
||||
LogLevel warn
|
||||
CustomLog /var/log/httpd/access_log combined
|
||||
Include /etc/httpd/conf/hostname.conf
|
||||
HostnameLookups off
|
||||
AddHandler cgi-script .cgi
|
||||
EnableSendfile Off
|
||||
|
||||
@@ -107,6 +107,7 @@
|
||||
* hdparm-6.3
|
||||
* htop-0.6.2
|
||||
* httpd-2.2.2
|
||||
* httpd-2.2.2-config
|
||||
* iana-etc-2.00
|
||||
* ibod
|
||||
* iftop-0.17
|
||||
@@ -206,6 +207,7 @@
|
||||
* readline-5.1
|
||||
* rp-pppoe-3.5
|
||||
* rrdtool-1.0.49
|
||||
* rsync-2.6.8
|
||||
* samba-3.0.23b
|
||||
* sata300_sataii150_tx_series_linux2.4_open_source_1.00.0.15
|
||||
* screen-4.0.2
|
||||
@@ -223,6 +225,7 @@
|
||||
* squidGuard-1.2.0
|
||||
* startscripts
|
||||
* stund_0.96_Aug13
|
||||
* subversion-1.3.1
|
||||
* sudo-1.6.8p12
|
||||
* sysklogd-1.4.1
|
||||
* syslinux-3.20
|
||||
|
||||
@@ -87,8 +87,8 @@ my $cre_svhosts = "${General::swroot}/proxy/advanced/cre/supervisors";
|
||||
|
||||
my $identhosts = "$identdir/hosts";
|
||||
|
||||
my $authdir = "/usr/lib/squid/advproxy/auth";
|
||||
my $errordir = "/usr/lib/squid/advproxy/errors";
|
||||
my $authdir = "/usr/lib/squid/auth";
|
||||
my $errordir = "/usr/lib/squid/errors";
|
||||
|
||||
my $acl_src_subnets = "$acldir/src_subnets.acl";
|
||||
my $acl_src_banned_ip = "$acldir/src_banned_ip.acl";
|
||||
@@ -3643,7 +3643,7 @@ END
|
||||
if ($proxysettings{'ENABLE_FILTER'} eq 'on')
|
||||
{
|
||||
print FILE <<END
|
||||
url_rewrite_program /usr/sbin/squidGuard
|
||||
url_rewrite_program /usr/bin/squidGuard
|
||||
url_rewrite_children $filtersettings{'CHILDREN'}
|
||||
|
||||
END
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
#
|
||||
# $Id: redirect.cgi,v 0.3 2006/07/18 00:00:00 modyfy bye linuxadmin
|
||||
# redirect.cgi - By IPFire-Team (C)
|
||||
#
|
||||
|
||||
use CGI qw(param);
|
||||
@@ -42,13 +42,12 @@ print <<END
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>ACCESS MESSAGE</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<table width="100%" height='100%' border="0">
|
||||
<tr>
|
||||
<td colspan='3' width='100%' height='130' align="center" background="http://$netsettings{'GREEN_ADDRESS'}:81//images/background.gif">
|
||||
<td colspan='3' width='100%' height='130' align="center" background="http://$netsettings{'GREEN_ADDRESS'}:81/images/background.gif">
|
||||
<tr> <td width='10%'><td align='center' bgcolor='#CC000000' width='80%'><font face="verdana, arial, sans serif" color="#FFFFFF" size="5">
|
||||
<b>$msgtext1</b>
|
||||
</font>
|
||||
|
||||
56
lfs/apache2
56
lfs/apache2
@@ -32,9 +32,11 @@ THISAPP = httpd-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = apache2
|
||||
PAK_VER = 1
|
||||
ifeq "$(PASS)" "CONFIG"
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)-config
|
||||
else
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
endif
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
@@ -57,9 +59,6 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
@$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
@@ -79,6 +78,30 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
ifeq "$(PASS)" "CONFIG"
|
||||
# DO THIS IN AN EXTRA STEP BECAUSE PHP AND SUBVERSION WILL FAIL.
|
||||
|
||||
cp -rf $(DIR_CONF)/httpd/* /etc/httpd/conf
|
||||
ln -sf $(CONFIG_ROOT)/main/hostname.conf /etc/httpd/conf/
|
||||
-find /etc/httpd/conf -name .svn -exec rm -rf {} \;
|
||||
|
||||
# Copy all html/cgi-bin files
|
||||
mkdir -p /home/httpd/{cgi-bin,html}
|
||||
cp -aR $(DIR_SRC)/html/* /home/httpd
|
||||
-find /home/httpd -name .svn -exec rm -rf {} \;
|
||||
cp $(DIR_DL)/sflogo.png /home/httpd/html/images/
|
||||
|
||||
# Change CONFIG_ROOT in cgi-scripts
|
||||
for i in /home/httpd/cgi-bin/{*,logs.cgi/*,vpn.cgi/*}; do \
|
||||
if [ -f $$i ]; then \
|
||||
sed -i "s+CONFIG_ROOT+$(CONFIG_ROOT)+g" $$i; \
|
||||
fi; \
|
||||
done
|
||||
chown -R root:root /home/httpd
|
||||
chmod -R 755 /home/httpd/cgi-bin
|
||||
chmod -R 644 /home/httpd/html
|
||||
chmod 755 /home/httpd/html /home/httpd/html/{index.cgi,redirect.cgi,dial.cgi,images,include}
|
||||
else
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_DL)/httpd-2.2.2-config-1.patch
|
||||
|
||||
@@ -116,25 +139,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
/usr/share/man/man1/{dbmmanage,ht{dbm,digest,passwd}}.1 \
|
||||
/usr/share/man/man8/{ab,apachectl,apxs,htcacheclean,httpd}.8 \
|
||||
/usr/share/man/man8/{logresolve,rotatelogs,suexec}.8
|
||||
|
||||
cp -rf $(DIR_CONF)/httpd/* /etc/httpd/conf
|
||||
ln -sf $(CONFIG_ROOT)/main/hostname.conf /etc/httpd/conf/
|
||||
|
||||
# Copy all html/cgi-bin files
|
||||
mkdir -p /home/httpd/{cgi-bin,html}
|
||||
cp -aR $(DIR_SRC)/html/* /home/httpd
|
||||
-find /home/httpd -name .svn -exec rm -rf {} \;
|
||||
cp $(DIR_DL)/sflogo.png /home/httpd/html/images/
|
||||
|
||||
# Change CONFIG_ROOT in cgi-scripts
|
||||
for i in /home/httpd/cgi-bin/{*,logs.cgi/*,vpn.cgi/*}; do \
|
||||
if [ -f $$i ]; then \
|
||||
sed -i "s+CONFIG_ROOT+$(CONFIG_ROOT)+g" $$i; \
|
||||
fi; \
|
||||
done
|
||||
chown -R root:root /home/httpd
|
||||
chmod -R 755 /home/httpd/cgi-bin
|
||||
chmod -R 644 /home/httpd/html
|
||||
chmod 755 /home/httpd/html /home/httpd/html/{index.cgi,redirect.cgi,dial.cgi,images,include}
|
||||
@rm -rf $(DIR_APP)
|
||||
endif
|
||||
@$(POSTBUILD)
|
||||
|
||||
@@ -30,7 +30,7 @@ VER = 0.7RC1
|
||||
|
||||
THISAPP = pam_mysql-0.7RC1
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_SFNET)/pam-mysql
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
@@ -72,8 +72,8 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --with-pam=/usr --with-pam-mods-dir=/lib/security --with-mysql=/opt/lampp --with-openssl=/usr # --with-cyrus-sasl2=/usr
|
||||
#cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && ./configure --with-pam=/usr --with-pam-mods-dir=/lib/security --with-mysql=/usr --with-openssl=/usr # --with-cyrus-sasl2=/usr
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
@@ -78,8 +78,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && make -f Makefile.init makefiles \
|
||||
'CCARGS=-DDEF_DAEMON_DIR=\"/usr/lib/postfix\" -DDEF_MANPAGE_DIR=\"/usr/share/man\" -DUSE_TLS -I/usr/include/openssl -DUSE_SALS_AUTH -I/usr/include/sasl -I/opt/lampp/include -DHAS_MYSQL -I/opt/lampp/include/mysql' \
|
||||
'AUXLIBS=-L/usr/lib -L/usr/lib/sasl2 -lz -lm -lssl -lcrypto -lmysqlclient -L/opt/lampp/lib/mysql -lsasl2 -L/opt/lampp/lib'
|
||||
'CCARGS=-DDEF_DAEMON_DIR=\"/usr/lib/postfix\" -DDEF_MANPAGE_DIR=\"/usr/share/man\" -DUSE_TLS -I/usr/include/openssl -DUSE_SALS_AUTH -I/usr/include/sasl -DHAS_MYSQL -I/usr/include/mysql' \
|
||||
'AUXLIBS=-L/usr/lib -L/usr/lib/sasl2 -lz -lm -lssl -lcrypto -lmysqlclient -L/usr/lib/mysql -lsasl2 -L/usr/lib'
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && sh postfix-install -non-interactive
|
||||
## Install configuration
|
||||
|
||||
@@ -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 $
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
@@ -36,7 +30,7 @@ VER = 2.1.21
|
||||
|
||||
THISAPP = cyrus-sasl-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = http://ftp.andrew.cmu.edu/pub/cyrus-mail
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
ifeq "$(PASS)" "1"
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
@@ -83,28 +77,30 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
ifeq "$(PASS)" "1"
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --with-dblib=berkeley --with-dbpath=/var/lib/sasl/sasldb2 --with-saslauthd=/var/run/saslauthd
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-dblib=berkeley \
|
||||
--with-dbpath=/var/lib/sasl/sasldb2 \
|
||||
--with-saslauthd=/var/run/saslauthd
|
||||
else
|
||||
# WITH LDAP SUPPORT AT THIS TIME
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr \
|
||||
--enable-anon --enable-plain \
|
||||
--disable-krb4 --disable-otp --disable-cram --disable-digest \
|
||||
--disable-krb4 --disable-otp \
|
||||
--disable-cram --disable-digest \
|
||||
--with-dblib=berkeley
|
||||
--with-ldap=/usr \
|
||||
--enable-sql \
|
||||
--with-pam=/lib/security \
|
||||
--with-openssl=/usr
|
||||
--without-pgsql \
|
||||
--with-mysql=/opt/lampp \
|
||||
--with-mysql=/usr \
|
||||
--sysconfdir=/var/ipfire/sasl \
|
||||
--with-dbpath=/var/lib/sasl/sasldb2 \
|
||||
--with-saslauthd=/var/run/saslauthd
|
||||
endif
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
# install -v -m644 saslauthd/saslauthd.8 /usr/share/man/man8
|
||||
# install -v -m755 -d /usr/share/doc/$(THISAPP)
|
||||
# install -v -m644 doc/{*.{html,txt,fig},ONEWS,TODO} saslauthd/LDAP_SASLAUTHD /usr/share/doc/$(THISAPP)
|
||||
ifeq "$(PASS)" "2"
|
||||
install -v -m700 -d /var/lib/sasl
|
||||
mkdir -p /var/run/saslauthd
|
||||
|
||||
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = subversion
|
||||
PAK_VER = ipfire-beta1
|
||||
PAK_VER = 1
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
@@ -79,7 +79,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr \
|
||||
--without-berkeley-db \
|
||||
--with-installbuilddir=/usr/lib/apr-0
|
||||
--with-installbuilddir=/usr/lib/apr-0 \
|
||||
--with-ssl --disable-nls \
|
||||
--disable-mod-activation
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
|
||||
@@ -33,8 +33,8 @@ DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = web-cyradm
|
||||
PAK_VER = ipfire-beta1
|
||||
PROG = webcyradm
|
||||
PAK_VER = 1
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
@@ -78,6 +78,7 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) -C /opt/lampp/htdocs
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/mail-db-mysql.tar.gz -C /opt/lampp/var/mysql
|
||||
cd $(DIR_SRC) && mkdir -p /home/httpd/webcyradm
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) -C /home/httpd/webcyradm
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/mail-db-mysql.tar.gz -C /srv/mysql
|
||||
@$(POSTBUILD)
|
||||
117
lfs/xampp
117
lfs/xampp
@@ -1,117 +0,0 @@
|
||||
###############################################################################
|
||||
# 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 = 1.5.3a
|
||||
|
||||
THISAPP = xampp-linux-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = /opt/lampp
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = xampp
|
||||
PAK_VER = 1
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE) \
|
||||
xampp-linux-devel-$(VER).tar.gz \
|
||||
PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz \
|
||||
Python-AddOn-1.3.tar.gz \
|
||||
wwget-beta-for-ipfire.tar.gz \
|
||||
wwget.dump
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
xampp-linux-devel-$(VER).tar.gz = $(URL_IPFIRE)/xampp-linux-devel-$(VER).tar.gz
|
||||
PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz = $(URL_IPFIRE)/PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz
|
||||
Python-AddOn-1.3.tar.gz = $(URL_IPFIRE)/Python-AddOn-1.3.tar.gz
|
||||
wwget-beta-for-ipfire.tar.gz = $(URL_IPFIRE)/wwget-beta-for-ipfire.tar.gz
|
||||
wwget.dump = $(URL_IPFIRE)/wwget.dump
|
||||
|
||||
$(DL_FILE)_MD5 = 422ab1faa4ab7afb3be8918ab8223b6b
|
||||
xampp-linux-devel-$(VER).tar.gz_MD5 = 30b4bce92ec389adf61cbf67246efd1f
|
||||
PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz_MD5 = 63171afe553fd557032407e1ba6af477
|
||||
Python-AddOn-1.3.tar.gz_MD5 = 5a962ea63c3e502227c8cca30e0ce786
|
||||
wwget-beta-for-ipfire.tar.gz_MD5 = 6591e663cf911cc745b44ca0ab38d24c
|
||||
wwget.dump_MD5 = 1d3d78214da692284e15b617b3bdd6e2
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
@$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# 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) -C /opt
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/xampp-linux-devel-$(VER).tar.gz -C /opt
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/Python-AddOn-1.3.tar.gz -C /tmp
|
||||
# cd $(DIR_SRC) && tar zxf $(DIR_DL)/PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz -C /tmp
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/wwget-beta-for-ipfire.tar.gz -C /opt/lampp/htdocs
|
||||
# cd /tmp/PostGreSQL-AddOn-1.0-pgsql8.1 && ./INSTALL
|
||||
# rm -rf /tmp/PostGreSQL-AddOn-1.0-pgsql8.1
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/bin /opt/lampp
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/cgi-bin /opt/lampp
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/etc /opt/lampp
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/htdocs /opt/lampp
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/include /opt/lampp
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/lib /opt/lampp
|
||||
# cd /tmp/Python-AddOn-1.3 && cp -fr lampp/licenses /opt/lampp
|
||||
# cd /tmp/Python-AddOn-1.3 && cp -fr lampp/man /opt/lampp
|
||||
cd /tmp/Python-AddOn-1.3 && cp -fr lampp/modules /opt/lampp
|
||||
# cd /tmp/Python-AddOn-1.3 && cp -fr lampp/share /opt/lampp
|
||||
rm -rf /tmp/Python-AddOn-1.3
|
||||
grep etc/python.conf /opt/lampp/etc/httpd.conf || echo -e "Include etc/python.conf" >> /opt/lampp/etc/httpd.conf
|
||||
chown -R nobody.nobody /opt/lampp/htdocs
|
||||
ln -fs /opt/lampp/lib/mysql/libmysqlclient.* /usr/lib
|
||||
ldconfig
|
||||
@$(POSTBUILD)
|
||||
23
make.sh
23
make.sh
@@ -606,7 +606,6 @@ buildipcop() {
|
||||
ipcopmake mysql
|
||||
ipcopmake saslauthd PASS=1
|
||||
ipcopmake openldap
|
||||
#ipcopmake apache
|
||||
ipcopmake apache2
|
||||
ipcopmake php
|
||||
ipcopmake arping
|
||||
@@ -676,7 +675,6 @@ buildipcop() {
|
||||
ipcopmake setserial
|
||||
ipcopmake setup
|
||||
ipcopmake snort
|
||||
#ipcopmake speedycgi
|
||||
ipcopmake squid
|
||||
ipcopmake squid-graph
|
||||
ipcopmake squidguard
|
||||
@@ -686,10 +684,8 @@ buildipcop() {
|
||||
ipcopmake wireless
|
||||
ipcopmake libsafe
|
||||
ipcopmake 3c5x9setup
|
||||
# echo -ne "`date -u '+%b %e %T'`: Building ### IPFire modules ### \n" | tee -a $LOGFILE
|
||||
ipcopmake pakfire
|
||||
ipcopmake startscripts
|
||||
## Zuerst die Libs und dann die Programme. Ordnung muss sein!
|
||||
ipcopmake java
|
||||
ipcopmake bootsplash
|
||||
ipcopmake spandsp
|
||||
@@ -697,19 +693,15 @@ buildipcop() {
|
||||
ipcopmake openvpn
|
||||
ipcopmake pkg-config
|
||||
ipcopmake glib
|
||||
ipcopmake xampp
|
||||
ipcopmake pam
|
||||
ipcopmake pammysql
|
||||
ipcopmake saslauthd PASS=2
|
||||
ipcopmake xinetd
|
||||
ipcopmake ghostscript
|
||||
ipcopmake cups
|
||||
# ipcopmake lpd ## Im Moment aus, da CUPS vorhanden ist.
|
||||
ipcopmake samba
|
||||
ipcopmake sudo
|
||||
ipcopmake mc
|
||||
# ipcopmake pwlib
|
||||
# ipcopmake openh323
|
||||
ipcopmake wget
|
||||
ipcopmake wput
|
||||
ipcopmake bridge-utils
|
||||
@@ -723,7 +715,7 @@ buildipcop() {
|
||||
ipcopmake procmail
|
||||
ipcopmake fetchmail
|
||||
ipcopmake cyrusimap
|
||||
ipcopmake web-cyradm
|
||||
ipcopmake webcyradm
|
||||
ipcopmake mailx
|
||||
ipcopmake clamav
|
||||
ipcopmake razor
|
||||
@@ -751,10 +743,9 @@ buildipcop() {
|
||||
ipcopmake applejuice
|
||||
ipcopmake ocaml
|
||||
ipcopmake mldonkey
|
||||
# ipcopmake sane
|
||||
echo -ne "`date -u '+%b %e %T'`: Building ### Net-Tools ### \n" | tee -a $LOGFILE
|
||||
ipcopmake ntop
|
||||
# ipcopmake rsync
|
||||
ipcopmake rsync
|
||||
ipcopmake tcpwrapper
|
||||
ipcopmake portmap
|
||||
ipcopmake nfs
|
||||
@@ -766,10 +757,11 @@ buildipcop() {
|
||||
ipcopmake etherwake
|
||||
ipcopmake ethereal
|
||||
ipcopmake tftp-hpa
|
||||
#ipcopmake subversion
|
||||
ipcopmake subversion
|
||||
ipcopmake iptraf
|
||||
ipcopmake nagios
|
||||
ipcopmake yasuc
|
||||
ipcopmake apache2 PASS=CONFIG
|
||||
}
|
||||
|
||||
buildinstaller() {
|
||||
@@ -882,7 +874,7 @@ ipfirepackages() {
|
||||
touch $BASEDIR/build/install/packages/$i.empty
|
||||
done
|
||||
fi
|
||||
ipfiredist amavisd
|
||||
# ipfiredist amavisd
|
||||
ipfiredist applejuice
|
||||
ipfiredist asterisk
|
||||
ipfiredist clamav
|
||||
@@ -898,7 +890,6 @@ ipfirepackages() {
|
||||
ipfiredist libogg
|
||||
ipfiredist libtiff
|
||||
ipfiredist libvorbis
|
||||
ipfiredist libxml2
|
||||
ipfiredist mailx
|
||||
ipfiredist mldonkey
|
||||
ipfiredist mpeg2dec
|
||||
@@ -914,9 +905,7 @@ ipfirepackages() {
|
||||
ipfiredist spamassassin
|
||||
ipfiredist subversion
|
||||
ipfiredist videolan
|
||||
ipfiredist web-cyradm
|
||||
ipfiredist xampp
|
||||
# ipfiredist xinetd
|
||||
ipfiredist webcyradm
|
||||
ipfiredist xvid
|
||||
ipfiredist yasuc
|
||||
test -d $BASEDIR/packages || mkdir $BASEDIR/packages
|
||||
|
||||
@@ -24263,7 +24263,7 @@ usr/sbin/pppoa3
|
||||
##usr/lib/perl5/site_perl/5.8.5/alpha-linux/auto/CGI/SpeedyCGI/.packlist
|
||||
#usr/lib/perl5/site_perl/5.8.5/CGI/SpeedyCGI.pm
|
||||
##
|
||||
## squid-2.5.STABLE14
|
||||
## squid-2.6.STABLE3
|
||||
##
|
||||
#etc/squid
|
||||
#etc/squid/cachemgr.conf
|
||||
@@ -24280,6 +24280,7 @@ etc/squid/squid.conf
|
||||
#usr/lib/squid
|
||||
#usr/lib/squid/cachemgr.cgi
|
||||
#usr/lib/squid/diskd
|
||||
#usr/lib/squid/diskd-daemon
|
||||
#usr/lib/squid/errors
|
||||
#usr/lib/squid/errors/Azerbaijani
|
||||
#usr/lib/squid/errors/Azerbaijani/ERR_ACCESS_DENIED
|
||||
@@ -29470,3 +29471,287 @@ usr/lib/xml2Conf.sh
|
||||
#usr/share/man/man1/xmlcatalog.1
|
||||
#usr/share/man/man1/xmllint.1
|
||||
#usr/share/man/man3/libxml.3
|
||||
##
|
||||
## mysql-5.0.24a
|
||||
##
|
||||
etc/my.cnf
|
||||
#srv
|
||||
#srv/mysql
|
||||
srv/mysql/mysql
|
||||
srv/mysql/mysql-bin.000001
|
||||
srv/mysql/mysql-bin.000002
|
||||
#srv/mysql/mysql-bin.index
|
||||
#srv/mysql/mysql/columns_priv.MYD
|
||||
#srv/mysql/mysql/columns_priv.MYI
|
||||
#srv/mysql/mysql/columns_priv.frm
|
||||
#srv/mysql/mysql/db.MYD
|
||||
#srv/mysql/mysql/db.MYI
|
||||
#srv/mysql/mysql/db.frm
|
||||
#srv/mysql/mysql/func.MYD
|
||||
#srv/mysql/mysql/func.MYI
|
||||
#srv/mysql/mysql/func.frm
|
||||
#srv/mysql/mysql/help_category.MYD
|
||||
#srv/mysql/mysql/help_category.MYI
|
||||
#srv/mysql/mysql/help_category.frm
|
||||
#srv/mysql/mysql/help_keyword.MYD
|
||||
#srv/mysql/mysql/help_keyword.MYI
|
||||
#srv/mysql/mysql/help_keyword.frm
|
||||
#srv/mysql/mysql/help_relation.MYD
|
||||
#srv/mysql/mysql/help_relation.MYI
|
||||
#srv/mysql/mysql/help_relation.frm
|
||||
#srv/mysql/mysql/help_topic.MYD
|
||||
#srv/mysql/mysql/help_topic.MYI
|
||||
#srv/mysql/mysql/help_topic.frm
|
||||
#srv/mysql/mysql/host.MYD
|
||||
#srv/mysql/mysql/host.MYI
|
||||
#srv/mysql/mysql/host.frm
|
||||
#srv/mysql/mysql/proc.MYD
|
||||
#srv/mysql/mysql/proc.MYI
|
||||
#srv/mysql/mysql/proc.frm
|
||||
#srv/mysql/mysql/procs_priv.MYD
|
||||
#srv/mysql/mysql/procs_priv.MYI
|
||||
#srv/mysql/mysql/procs_priv.frm
|
||||
#srv/mysql/mysql/tables_priv.MYD
|
||||
#srv/mysql/mysql/tables_priv.MYI
|
||||
#srv/mysql/mysql/tables_priv.frm
|
||||
#srv/mysql/mysql/time_zone.MYD
|
||||
#srv/mysql/mysql/time_zone.MYI
|
||||
#srv/mysql/mysql/time_zone.frm
|
||||
#srv/mysql/mysql/time_zone_leap_second.MYD
|
||||
#srv/mysql/mysql/time_zone_leap_second.MYI
|
||||
#srv/mysql/mysql/time_zone_leap_second.frm
|
||||
#srv/mysql/mysql/time_zone_name.MYD
|
||||
#srv/mysql/mysql/time_zone_name.MYI
|
||||
#srv/mysql/mysql/time_zone_name.frm
|
||||
#srv/mysql/mysql/time_zone_transition.MYD
|
||||
#srv/mysql/mysql/time_zone_transition.MYI
|
||||
#srv/mysql/mysql/time_zone_transition.frm
|
||||
#srv/mysql/mysql/time_zone_transition_type.MYD
|
||||
#srv/mysql/mysql/time_zone_transition_type.MYI
|
||||
#srv/mysql/mysql/time_zone_transition_type.frm
|
||||
#srv/mysql/mysql/user.MYD
|
||||
#srv/mysql/mysql/user.MYI
|
||||
#srv/mysql/mysql/user.frm
|
||||
srv/mysql/test
|
||||
usr/bin/comp_err
|
||||
usr/bin/innochecksum
|
||||
#usr/bin/msql2mysql
|
||||
usr/bin/my_print_defaults
|
||||
usr/bin/myisam_ftdump
|
||||
usr/bin/myisamchk
|
||||
usr/bin/myisamlog
|
||||
usr/bin/myisampack
|
||||
usr/bin/mysql
|
||||
usr/bin/mysql_client_test
|
||||
usr/bin/mysql_config
|
||||
usr/bin/mysql_convert_table_format
|
||||
usr/bin/mysql_create_system_tables
|
||||
usr/bin/mysql_explain_log
|
||||
usr/bin/mysql_find_rows
|
||||
usr/bin/mysql_fix_extensions
|
||||
usr/bin/mysql_fix_privilege_tables
|
||||
usr/bin/mysql_install_db
|
||||
usr/bin/mysql_secure_installation
|
||||
usr/bin/mysql_setpermission
|
||||
usr/bin/mysql_tableinfo
|
||||
usr/bin/mysql_tzinfo_to_sql
|
||||
usr/bin/mysql_upgrade
|
||||
usr/bin/mysql_upgrade_shell
|
||||
usr/bin/mysql_waitpid
|
||||
usr/bin/mysql_zap
|
||||
usr/bin/mysqlaccess
|
||||
usr/bin/mysqladmin
|
||||
usr/bin/mysqlbinlog
|
||||
usr/bin/mysqlbug
|
||||
usr/bin/mysqlcheck
|
||||
usr/bin/mysqld_multi
|
||||
usr/bin/mysqld_safe
|
||||
usr/bin/mysqldump
|
||||
#usr/bin/mysqldumpslow
|
||||
#usr/bin/mysqlhotcopy
|
||||
usr/bin/mysqlimport
|
||||
usr/bin/mysqlshow
|
||||
usr/bin/mysqltest
|
||||
#usr/bin/mysqltestmanager
|
||||
#usr/bin/mysqltestmanager-pwgen
|
||||
#usr/bin/mysqltestmanagerc
|
||||
usr/bin/perror
|
||||
usr/bin/replace
|
||||
usr/bin/resolve_stack_dump
|
||||
usr/bin/resolveip
|
||||
#usr/include/mysql
|
||||
#usr/include/mysql/errmsg.h
|
||||
#usr/include/mysql/keycache.h
|
||||
#usr/include/mysql/m_ctype.h
|
||||
#usr/include/mysql/m_string.h
|
||||
#usr/include/mysql/my_alloc.h
|
||||
#usr/include/mysql/my_config.h
|
||||
#usr/include/mysql/my_dbug.h
|
||||
#usr/include/mysql/my_dir.h
|
||||
#usr/include/mysql/my_getopt.h
|
||||
#usr/include/mysql/my_global.h
|
||||
#usr/include/mysql/my_list.h
|
||||
#usr/include/mysql/my_net.h
|
||||
#usr/include/mysql/my_no_pthread.h
|
||||
#usr/include/mysql/my_pthread.h
|
||||
#usr/include/mysql/my_semaphore.h
|
||||
#usr/include/mysql/my_sys.h
|
||||
#usr/include/mysql/my_xml.h
|
||||
#usr/include/mysql/mysql.h
|
||||
#usr/include/mysql/mysql_com.h
|
||||
#usr/include/mysql/mysql_embed.h
|
||||
#usr/include/mysql/mysql_time.h
|
||||
#usr/include/mysql/mysql_version.h
|
||||
#usr/include/mysql/mysqld_ername.h
|
||||
#usr/include/mysql/mysqld_error.h
|
||||
#usr/include/mysql/raid.h
|
||||
#usr/include/mysql/sql_common.h
|
||||
#usr/include/mysql/sql_state.h
|
||||
#usr/include/mysql/sslopt-case.h
|
||||
#usr/include/mysql/sslopt-longopts.h
|
||||
#usr/include/mysql/sslopt-vars.h
|
||||
#usr/include/mysql/typelib.h
|
||||
usr/lib/libmysqlclient.so
|
||||
usr/lib/libmysqlclient.so.15
|
||||
usr/lib/libmysqlclient.so.15.0.0
|
||||
usr/lib/libmysqlclient_r.so
|
||||
usr/lib/libmysqlclient_r.so.15
|
||||
usr/lib/libmysqlclient_r.so.15.0.0
|
||||
#usr/lib/mysql
|
||||
usr/lib/mysql/libdbug.a
|
||||
usr/lib/mysql/libheap.a
|
||||
usr/lib/mysql/libmyisam.a
|
||||
usr/lib/mysql/libmyisammrg.a
|
||||
#usr/lib/mysql/libmysqlclient.a
|
||||
#usr/lib/mysql/libmysqlclient.la
|
||||
usr/lib/mysql/libmysqlclient.so
|
||||
usr/lib/mysql/libmysqlclient.so.15
|
||||
usr/lib/mysql/libmysqlclient.so.15.0.0
|
||||
#usr/lib/mysql/libmysqlclient_r.a
|
||||
#usr/lib/mysql/libmysqlclient_r.la
|
||||
usr/lib/mysql/libmysqlclient_r.so
|
||||
usr/lib/mysql/libmysqlclient_r.so.15
|
||||
usr/lib/mysql/libmysqlclient_r.so.15.0.0
|
||||
usr/lib/mysql/libmystrings.a
|
||||
usr/lib/mysql/libmysys.a
|
||||
usr/lib/mysql/libvio.a
|
||||
usr/sbin/mysqld
|
||||
usr/sbin/mysqlmanager
|
||||
#usr/share/info/mysql.info
|
||||
#usr/share/man/man1/msql2mysql.1
|
||||
#usr/share/man/man1/myisam_ftdump.1
|
||||
#usr/share/man/man1/myisamchk.1
|
||||
#usr/share/man/man1/myisamlog.1
|
||||
#usr/share/man/man1/myisampack.1
|
||||
#usr/share/man/man1/mysql.1
|
||||
#usr/share/man/man1/mysql.server.1
|
||||
#usr/share/man/man1/mysql_config.1
|
||||
#usr/share/man/man1/mysql_explain_log.1
|
||||
#usr/share/man/man1/mysql_fix_privilege_tables.1
|
||||
#usr/share/man/man1/mysql_upgrade.1
|
||||
#usr/share/man/man1/mysql_zap.1
|
||||
#usr/share/man/man1/mysqlaccess.1
|
||||
#usr/share/man/man1/mysqladmin.1
|
||||
#usr/share/man/man1/mysqlbinlog.1
|
||||
#usr/share/man/man1/mysqlcheck.1
|
||||
#usr/share/man/man1/mysqld.1
|
||||
#usr/share/man/man1/mysqld_multi.1
|
||||
#usr/share/man/man1/mysqld_safe.1
|
||||
#usr/share/man/man1/mysqldump.1
|
||||
#usr/share/man/man1/mysqlhotcopy.1
|
||||
#usr/share/man/man1/mysqlimport.1
|
||||
#usr/share/man/man1/mysqlman.1
|
||||
#usr/share/man/man1/mysqlmanager.1
|
||||
#usr/share/man/man1/mysqlshow.1
|
||||
#usr/share/man/man1/perror.1
|
||||
#usr/share/man/man1/replace.1
|
||||
#usr/share/man/man1/safe_mysqld.1
|
||||
#usr/share/mysql
|
||||
#usr/share/mysql/binary-configure
|
||||
usr/share/mysql/charsets
|
||||
#usr/share/mysql/charsets/Index.xml
|
||||
#usr/share/mysql/charsets/README
|
||||
#usr/share/mysql/charsets/armscii8.xml
|
||||
#usr/share/mysql/charsets/ascii.xml
|
||||
#usr/share/mysql/charsets/cp1250.xml
|
||||
#usr/share/mysql/charsets/cp1251.xml
|
||||
#usr/share/mysql/charsets/cp1256.xml
|
||||
#usr/share/mysql/charsets/cp1257.xml
|
||||
#usr/share/mysql/charsets/cp850.xml
|
||||
#usr/share/mysql/charsets/cp852.xml
|
||||
#usr/share/mysql/charsets/cp866.xml
|
||||
#usr/share/mysql/charsets/dec8.xml
|
||||
#usr/share/mysql/charsets/geostd8.xml
|
||||
#usr/share/mysql/charsets/greek.xml
|
||||
#usr/share/mysql/charsets/hebrew.xml
|
||||
#usr/share/mysql/charsets/hp8.xml
|
||||
#usr/share/mysql/charsets/keybcs2.xml
|
||||
#usr/share/mysql/charsets/koi8r.xml
|
||||
#usr/share/mysql/charsets/koi8u.xml
|
||||
#usr/share/mysql/charsets/latin1.xml
|
||||
#usr/share/mysql/charsets/latin2.xml
|
||||
#usr/share/mysql/charsets/latin5.xml
|
||||
#usr/share/mysql/charsets/latin7.xml
|
||||
#usr/share/mysql/charsets/macce.xml
|
||||
#usr/share/mysql/charsets/macroman.xml
|
||||
#usr/share/mysql/charsets/swe7.xml
|
||||
#usr/share/mysql/czech
|
||||
#usr/share/mysql/czech/errmsg.sys
|
||||
#usr/share/mysql/danish
|
||||
#usr/share/mysql/danish/errmsg.sys
|
||||
#usr/share/mysql/dutch
|
||||
#usr/share/mysql/dutch/errmsg.sys
|
||||
#usr/share/mysql/english
|
||||
usr/share/mysql/english/errmsg.sys
|
||||
usr/share/mysql/errmsg.txt
|
||||
#usr/share/mysql/estonian
|
||||
#usr/share/mysql/estonian/errmsg.sys
|
||||
usr/share/mysql/fill_help_tables.sql
|
||||
#usr/share/mysql/french
|
||||
#usr/share/mysql/french/errmsg.sys
|
||||
#usr/share/mysql/german
|
||||
usr/share/mysql/german/errmsg.sys
|
||||
#usr/share/mysql/greek
|
||||
#usr/share/mysql/greek/errmsg.sys
|
||||
#usr/share/mysql/hungarian
|
||||
#usr/share/mysql/hungarian/errmsg.sys
|
||||
#usr/share/mysql/italian
|
||||
#usr/share/mysql/italian/errmsg.sys
|
||||
#usr/share/mysql/japanese
|
||||
#usr/share/mysql/japanese/errmsg.sys
|
||||
#usr/share/mysql/korean
|
||||
#usr/share/mysql/korean/errmsg.sys
|
||||
#usr/share/mysql/mi_test_all
|
||||
#usr/share/mysql/mi_test_all.res
|
||||
#usr/share/mysql/my-huge.cnf
|
||||
#usr/share/mysql/my-innodb-heavy-4G.cnf
|
||||
#usr/share/mysql/my-large.cnf
|
||||
#usr/share/mysql/my-medium.cnf
|
||||
#usr/share/mysql/my-small.cnf
|
||||
#usr/share/mysql/mysql-log-rotate
|
||||
#usr/share/mysql/mysql.server
|
||||
#usr/share/mysql/mysql_fix_privilege_tables.sql
|
||||
#usr/share/mysql/ndb-config-2-node.ini
|
||||
#usr/share/mysql/norwegian
|
||||
#usr/share/mysql/norwegian-ny
|
||||
#usr/share/mysql/norwegian-ny/errmsg.sys
|
||||
#usr/share/mysql/norwegian/errmsg.sys
|
||||
#usr/share/mysql/polish
|
||||
#usr/share/mysql/polish/errmsg.sys
|
||||
#usr/share/mysql/portuguese
|
||||
#usr/share/mysql/portuguese/errmsg.sys
|
||||
#usr/share/mysql/romanian
|
||||
#usr/share/mysql/romanian/errmsg.sys
|
||||
#usr/share/mysql/russian
|
||||
#usr/share/mysql/russian/errmsg.sys
|
||||
#usr/share/mysql/serbian
|
||||
#usr/share/mysql/serbian/errmsg.sys
|
||||
#usr/share/mysql/slovak
|
||||
#usr/share/mysql/slovak/errmsg.sys
|
||||
#usr/share/mysql/spanish
|
||||
#usr/share/mysql/spanish/errmsg.sys
|
||||
#usr/share/mysql/swedish
|
||||
#usr/share/mysql/swedish/errmsg.sys
|
||||
#usr/share/mysql/ukrainian
|
||||
#usr/share/mysql/ukrainian/errmsg.sys
|
||||
var/run/mysql
|
||||
|
||||
@@ -1,333 +0,0 @@
|
||||
usr/bin/xml2-config
|
||||
usr/bin/xmlcatalog
|
||||
usr/bin/xmllint
|
||||
#usr/include/libxml2
|
||||
#usr/include/libxml2/libxml
|
||||
#usr/include/libxml2/libxml/DOCBparser.h
|
||||
#usr/include/libxml2/libxml/HTMLparser.h
|
||||
#usr/include/libxml2/libxml/HTMLtree.h
|
||||
#usr/include/libxml2/libxml/SAX.h
|
||||
#usr/include/libxml2/libxml/SAX2.h
|
||||
#usr/include/libxml2/libxml/c14n.h
|
||||
#usr/include/libxml2/libxml/catalog.h
|
||||
#usr/include/libxml2/libxml/chvalid.h
|
||||
#usr/include/libxml2/libxml/debugXML.h
|
||||
#usr/include/libxml2/libxml/dict.h
|
||||
#usr/include/libxml2/libxml/encoding.h
|
||||
#usr/include/libxml2/libxml/entities.h
|
||||
#usr/include/libxml2/libxml/globals.h
|
||||
#usr/include/libxml2/libxml/hash.h
|
||||
#usr/include/libxml2/libxml/list.h
|
||||
#usr/include/libxml2/libxml/nanoftp.h
|
||||
#usr/include/libxml2/libxml/nanohttp.h
|
||||
#usr/include/libxml2/libxml/parser.h
|
||||
#usr/include/libxml2/libxml/parserInternals.h
|
||||
#usr/include/libxml2/libxml/pattern.h
|
||||
#usr/include/libxml2/libxml/relaxng.h
|
||||
#usr/include/libxml2/libxml/schemasInternals.h
|
||||
#usr/include/libxml2/libxml/schematron.h
|
||||
#usr/include/libxml2/libxml/threads.h
|
||||
#usr/include/libxml2/libxml/tree.h
|
||||
#usr/include/libxml2/libxml/uri.h
|
||||
#usr/include/libxml2/libxml/valid.h
|
||||
#usr/include/libxml2/libxml/xinclude.h
|
||||
#usr/include/libxml2/libxml/xlink.h
|
||||
#usr/include/libxml2/libxml/xmlIO.h
|
||||
#usr/include/libxml2/libxml/xmlautomata.h
|
||||
#usr/include/libxml2/libxml/xmlerror.h
|
||||
#usr/include/libxml2/libxml/xmlexports.h
|
||||
#usr/include/libxml2/libxml/xmlmemory.h
|
||||
#usr/include/libxml2/libxml/xmlmodule.h
|
||||
#usr/include/libxml2/libxml/xmlreader.h
|
||||
#usr/include/libxml2/libxml/xmlregexp.h
|
||||
#usr/include/libxml2/libxml/xmlsave.h
|
||||
#usr/include/libxml2/libxml/xmlschemas.h
|
||||
#usr/include/libxml2/libxml/xmlschemastypes.h
|
||||
#usr/include/libxml2/libxml/xmlstring.h
|
||||
#usr/include/libxml2/libxml/xmlunicode.h
|
||||
#usr/include/libxml2/libxml/xmlversion.h
|
||||
#usr/include/libxml2/libxml/xmlwriter.h
|
||||
#usr/include/libxml2/libxml/xpath.h
|
||||
#usr/include/libxml2/libxml/xpathInternals.h
|
||||
#usr/include/libxml2/libxml/xpointer.h
|
||||
usr/lib/libxml2.a
|
||||
usr/lib/libxml2.la
|
||||
usr/lib/libxml2.so
|
||||
usr/lib/libxml2.so.2
|
||||
usr/lib/libxml2.so.2.6.22
|
||||
usr/lib/pkgconfig/libxml-2.0.pc
|
||||
usr/lib/python2.3/site-packages/drv_libxml2.py
|
||||
usr/lib/python2.3/site-packages/libxml2.py
|
||||
usr/lib/python2.3/site-packages/libxml2mod.a
|
||||
usr/lib/python2.3/site-packages/libxml2mod.la
|
||||
usr/lib/python2.3/site-packages/libxml2mod.so
|
||||
usr/lib/xml2Conf.sh
|
||||
#usr/share/aclocal/libxml.m4
|
||||
#usr/share/doc/libxml2-2.6.22
|
||||
#usr/share/doc/libxml2-2.6.22/Copyright
|
||||
#usr/share/doc/libxml2-2.6.22/examples
|
||||
#usr/share/doc/libxml2-2.6.22/examples/testHTML.c
|
||||
#usr/share/doc/libxml2-2.6.22/examples/testSAX.c
|
||||
#usr/share/doc/libxml2-2.6.22/examples/testXPath.c
|
||||
#usr/share/doc/libxml2-2.6.22/examples/xmllint.c
|
||||
#usr/share/doc/libxml2-2.6.22/html
|
||||
#usr/share/doc/libxml2-2.6.22/html/DOM.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/FAQ.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/Libxml2-Logo-180x168.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/Libxml2-Logo-90x34.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/encoding.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/examples.xml
|
||||
#usr/share/doc/libxml2-2.6.22/html/examples.xsl
|
||||
#usr/share/doc/libxml2-2.6.22/html/html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/book1.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/home.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/index.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/left.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-DOCBparser.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-HTMLparser.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-HTMLtree.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-SAX.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-SAX2.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-c14n.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-catalog.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-chvalid.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-debugXML.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-dict.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-encoding.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-entities.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-globals.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-hash.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-lib.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-list.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-nanoftp.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-nanohttp.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-parser.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-parserInternals.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-pattern.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-relaxng.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-schemasInternals.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-schematron.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-threads.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-tree.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-uri.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-valid.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xinclude.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xlink.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlIO.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlautomata.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlerror.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlexports.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlmemory.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlmodule.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlreader.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlregexp.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlsave.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlschemas.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlschemastypes.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlstring.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlunicode.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlversion.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xmlwriter.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xpath.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xpathInternals.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/libxml-xpointer.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/right.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/html/up.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/io1.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/io1.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/io2.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/io2.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/libxml.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/parse1.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/parse2.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/parse3.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/parse4.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader1.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader1.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader2.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader3.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader3.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader4.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/reader4.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/redhat.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/smallfootonly.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/structure.gif
|
||||
#usr/share/doc/libxml2-2.6.22/html/test1.xml
|
||||
#usr/share/doc/libxml2-2.6.22/html/test2.xml
|
||||
#usr/share/doc/libxml2-2.6.22/html/test3.xml
|
||||
#usr/share/doc/libxml2-2.6.22/html/testWriter.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tree1.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tree1.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/tree2.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tree2.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/tst.xml
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/apa.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/apb.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/apc.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/apd.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ape.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/apf.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/apg.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/aph.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/api.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s02.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s03.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s04.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s05.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s06.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s07.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s08.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ar01s09.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/blank.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/1.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/10.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/2.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/3.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/4.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/5.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/6.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/7.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/8.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/callouts/9.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/caution.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/draft.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/home.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/important.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/next.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/note.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/prev.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/tip.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/toc-blank.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/toc-minus.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/toc-plus.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/up.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/images/warning.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/includeaddattribute.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/includeaddkeyword.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/includeconvert.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/includegetattribute.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/includekeyword.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/includexpath.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/index.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/ix01.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/tutorial/xmltutorial.pdf
|
||||
#usr/share/doc/libxml2-2.6.22/html/w3c.png
|
||||
#usr/share/doc/libxml2-2.6.22/html/writer.xml
|
||||
#usr/share/doc/libxml2-2.6.22/html/xml.html
|
||||
#usr/share/doc/libxml2-2.6.22/html/xpath1.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/xpath1.res
|
||||
#usr/share/doc/libxml2-2.6.22/html/xpath2.c
|
||||
#usr/share/doc/libxml2-2.6.22/html/xpath2.res
|
||||
#usr/share/doc/libxml2-python-2.6.22
|
||||
#usr/share/doc/libxml2-python-2.6.22/TODO
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/attribs.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/build.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/ctxterror.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/cutnpaste.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/dtdvalid.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/error.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/inbuf.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/indexes.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/invalid.xml
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/nsdel.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/outbuf.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/push.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/pushSAX.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/pushSAXhtml.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader2.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader3.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader4.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader5.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader6.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader7.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/reader8.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/readererr.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/readernext.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/regexp.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/relaxng.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/resolver.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/schema.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/serialize.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/sync.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/test.dtd
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/thread2.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/tst.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/tst.xml
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/tstLastError.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/tstURI.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/tstmem.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/tstxpath.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/valid.xml
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/validDTD.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/validRNG.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/validSchemas.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/validate.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/walker.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/xpath.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/xpathext.py
|
||||
#usr/share/doc/libxml2-python-2.6.22/examples/xpathret.py
|
||||
#usr/share/gtk-doc/html/libxml2
|
||||
#usr/share/gtk-doc/html/libxml2/general.html
|
||||
#usr/share/gtk-doc/html/libxml2/home.png
|
||||
#usr/share/gtk-doc/html/libxml2/index.html
|
||||
#usr/share/gtk-doc/html/libxml2/left.png
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-SAX.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-SAX2.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-c14n.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-catalog.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-chvalid.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-debugXML.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-dict.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-encoding.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-entities.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-globals.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-hash.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-list.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-nanoftp.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-nanohttp.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-parser.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-parserInternals.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-pattern.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-relaxng.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-schematron.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-threads.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-tree.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-uri.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-valid.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xinclude.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xlink.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlIO.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlerror.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlexports.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlreader.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlsave.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlstring.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlversion.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xpath.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2-xpointer.html
|
||||
#usr/share/gtk-doc/html/libxml2/libxml2.devhelp
|
||||
#usr/share/gtk-doc/html/libxml2/right.png
|
||||
#usr/share/gtk-doc/html/libxml2/style.css
|
||||
#usr/share/gtk-doc/html/libxml2/up.png
|
||||
#usr/share/man/man1/xml2-config.1
|
||||
#usr/share/man/man1/xmlcatalog.1
|
||||
#usr/share/man/man1/xmllint.1
|
||||
#usr/share/man/man3/libxml.3
|
||||
@@ -1,11 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,158 +0,0 @@
|
||||
usr/bin/mc
|
||||
usr/bin/mcc
|
||||
usr/bin/mcedit
|
||||
usr/bin/mcmfmt
|
||||
usr/bin/mcview
|
||||
usr/lib/mc
|
||||
usr/lib/mc/cons.saver
|
||||
#usr/share/locale/az/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/be/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/bg/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/ca/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/cs/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/da/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/de/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/el/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/es/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/eu/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/fi/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/fr/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/hu/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/it/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/ja/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/ko/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/lt/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/lv/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/mn/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/nl/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/no/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/pt/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/pt_BR/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/ro/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/ru/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/sk/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/sl/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/sr/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/sv/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/ta/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/tr/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/uk/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/wa/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/zh_CN/LC_MESSAGES/mc.mo
|
||||
#usr/share/locale/zh_TW/LC_MESSAGES/mc.mo
|
||||
#usr/share/man/es/man1/mc.1
|
||||
#usr/share/man/hu/man1/mc.1
|
||||
#usr/share/man/it/man1/mc.1
|
||||
#usr/share/man/man1/mc.1
|
||||
#usr/share/man/man1/mcedit.1
|
||||
#usr/share/man/man1/mcview.1
|
||||
#usr/share/man/pl/man1/mc.1
|
||||
#usr/share/man/ru/man1
|
||||
#usr/share/man/ru/man1/mc.1
|
||||
#usr/share/man/sr
|
||||
#usr/share/man/sr/man1
|
||||
#usr/share/man/sr/man1/mc.1
|
||||
#usr/share/man/sr/man8
|
||||
usr/share/mc
|
||||
#usr/share/mc/bin
|
||||
#usr/share/mc/bin/mc-wrapper.csh
|
||||
#usr/share/mc/bin/mc-wrapper.sh
|
||||
#usr/share/mc/bin/mc.csh
|
||||
#usr/share/mc/bin/mc.sh
|
||||
#usr/share/mc/cedit.menu
|
||||
#usr/share/mc/edit.indent.rc
|
||||
#usr/share/mc/edit.spell.rc
|
||||
#usr/share/mc/extfs
|
||||
#usr/share/mc/extfs/README
|
||||
#usr/share/mc/extfs/a
|
||||
#usr/share/mc/extfs/apt
|
||||
#usr/share/mc/extfs/audio
|
||||
#usr/share/mc/extfs/bpp
|
||||
#usr/share/mc/extfs/deb
|
||||
#usr/share/mc/extfs/deba
|
||||
#usr/share/mc/extfs/debd
|
||||
#usr/share/mc/extfs/dpkg
|
||||
#usr/share/mc/extfs/extfs.ini
|
||||
#usr/share/mc/extfs/hp48
|
||||
#usr/share/mc/extfs/iso9660
|
||||
#usr/share/mc/extfs/lslR
|
||||
#usr/share/mc/extfs/mailfs
|
||||
#usr/share/mc/extfs/patchfs
|
||||
#usr/share/mc/extfs/rpm
|
||||
#usr/share/mc/extfs/rpms
|
||||
#usr/share/mc/extfs/sfs.ini
|
||||
#usr/share/mc/extfs/trpm
|
||||
#usr/share/mc/extfs/uar
|
||||
#usr/share/mc/extfs/uarj
|
||||
#usr/share/mc/extfs/uha
|
||||
#usr/share/mc/extfs/ulha
|
||||
#usr/share/mc/extfs/urar
|
||||
#usr/share/mc/extfs/uzip
|
||||
#usr/share/mc/extfs/uzoo
|
||||
#usr/share/mc/mc.ext
|
||||
#usr/share/mc/mc.hint
|
||||
#usr/share/mc/mc.hint.cs
|
||||
#usr/share/mc/mc.hint.es
|
||||
#usr/share/mc/mc.hint.hu
|
||||
#usr/share/mc/mc.hint.it
|
||||
#usr/share/mc/mc.hint.nl
|
||||
#usr/share/mc/mc.hint.pl
|
||||
#usr/share/mc/mc.hint.ru
|
||||
#usr/share/mc/mc.hint.sr
|
||||
#usr/share/mc/mc.hint.uk
|
||||
#usr/share/mc/mc.hint.zh
|
||||
#usr/share/mc/mc.hlp
|
||||
#usr/share/mc/mc.hlp.es
|
||||
#usr/share/mc/mc.hlp.hu
|
||||
#usr/share/mc/mc.hlp.it
|
||||
#usr/share/mc/mc.hlp.pl
|
||||
#usr/share/mc/mc.hlp.ru
|
||||
#usr/share/mc/mc.hlp.sr
|
||||
#usr/share/mc/mc.lib
|
||||
#usr/share/mc/mc.menu
|
||||
#usr/share/mc/mc.menu.sr
|
||||
#usr/share/mc/syntax
|
||||
#usr/share/mc/syntax/Syntax
|
||||
#usr/share/mc/syntax/ada95.syntax
|
||||
#usr/share/mc/syntax/aspx.syntax
|
||||
#usr/share/mc/syntax/assembler.syntax
|
||||
#usr/share/mc/syntax/c.syntax
|
||||
#usr/share/mc/syntax/changelog.syntax
|
||||
#usr/share/mc/syntax/cs.syntax
|
||||
#usr/share/mc/syntax/diff.syntax
|
||||
#usr/share/mc/syntax/dos.syntax
|
||||
#usr/share/mc/syntax/eiffel.syntax
|
||||
#usr/share/mc/syntax/fortran.syntax
|
||||
#usr/share/mc/syntax/html.syntax
|
||||
#usr/share/mc/syntax/idl.syntax
|
||||
#usr/share/mc/syntax/java.syntax
|
||||
#usr/share/mc/syntax/js.syntax
|
||||
#usr/share/mc/syntax/latex.syntax
|
||||
#usr/share/mc/syntax/lisp.syntax
|
||||
#usr/share/mc/syntax/lsm.syntax
|
||||
#usr/share/mc/syntax/lua.syntax
|
||||
#usr/share/mc/syntax/m4.syntax
|
||||
#usr/share/mc/syntax/mail.syntax
|
||||
#usr/share/mc/syntax/makefile.syntax
|
||||
#usr/share/mc/syntax/ml.syntax
|
||||
#usr/share/mc/syntax/nroff.syntax
|
||||
#usr/share/mc/syntax/octave.syntax
|
||||
#usr/share/mc/syntax/pascal.syntax
|
||||
#usr/share/mc/syntax/perl.syntax
|
||||
#usr/share/mc/syntax/php.syntax
|
||||
#usr/share/mc/syntax/po.syntax
|
||||
#usr/share/mc/syntax/povray.syntax
|
||||
#usr/share/mc/syntax/python.syntax
|
||||
#usr/share/mc/syntax/ruby.syntax
|
||||
#usr/share/mc/syntax/sh.syntax
|
||||
#usr/share/mc/syntax/slang.syntax
|
||||
#usr/share/mc/syntax/smalltalk.syntax
|
||||
#usr/share/mc/syntax/spec.syntax
|
||||
#usr/share/mc/syntax/sql.syntax
|
||||
#usr/share/mc/syntax/swig.syntax
|
||||
#usr/share/mc/syntax/syntax.syntax
|
||||
#usr/share/mc/syntax/tcl.syntax
|
||||
#usr/share/mc/syntax/texinfo.syntax
|
||||
#usr/share/mc/syntax/unknown.syntax
|
||||
#usr/share/mc/syntax/xml.syntax
|
||||
@@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
tar xfz files.tgz -C /
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,11 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,11 +1,11 @@
|
||||
usr/bin/apr-config
|
||||
usr/bin/apu-config
|
||||
usr/bin/neon-config
|
||||
#usr/bin/apr-config
|
||||
#usr/bin/apu-config
|
||||
#usr/bin/neon-config
|
||||
usr/bin/svn
|
||||
usr/bin/svnadmin
|
||||
usr/bin/svndumpfilter
|
||||
usr/bin/svnlook
|
||||
#usr/bin/svnserve
|
||||
usr/bin/svnserve
|
||||
usr/bin/svnversion
|
||||
#usr/include/apr-0
|
||||
#usr/include/apr-0/apr.h
|
||||
@@ -129,11 +129,11 @@ usr/bin/svnversion
|
||||
#usr/include/subversion-1/svn_version.h
|
||||
#usr/include/subversion-1/svn_wc.h
|
||||
#usr/include/subversion-1/svn_xml.h
|
||||
usr/lib/apache/mod_authz_svn.so
|
||||
usr/lib/apache/mod_dav_svn.so
|
||||
#usr/lib/apr-0
|
||||
#usr/lib/apr-0/apr_rules.mk
|
||||
#usr/lib/apr-0/libtool
|
||||
#usr/lib/apr.exp
|
||||
#usr/lib/aprutil.exp
|
||||
#usr/lib/libapr-0.a
|
||||
#usr/lib/libapr-0.la
|
||||
usr/lib/libapr-0.so
|
||||
@@ -267,18 +267,6 @@ usr/lib/libsvn_wc-1.so.0.0.0
|
||||
#usr/share/doc/neon-0.25.5/html/refxml.html
|
||||
#usr/share/doc/neon-0.25.5/html/using.html
|
||||
#usr/share/doc/neon-0.25.5/html/xml.html
|
||||
#usr/share/locale/de/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/es/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/fr/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/it/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/ja/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/ko/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/nb/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/pt_BR/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/sv/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/zh_CN/LC_MESSAGES/subversion.mo
|
||||
#usr/share/locale/zh_TW/LC_MESSAGES/subversion.mo
|
||||
#usr/share/man/man1/neon-config.1
|
||||
#usr/share/man/man1/svn.1
|
||||
#usr/share/man/man1/svnadmin.1
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/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
|
||||
21808
src/paks/xampp/ROOTFILES
21808
src/paks/xampp/ROOTFILES
File diff suppressed because it is too large
Load Diff
@@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Extract the files
|
||||
tar xfz files.tgz -C /
|
||||
tar xfz conf.tgz -C /
|
||||
cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,11 +0,0 @@
|
||||
usr/sbin/itox
|
||||
usr/sbin/xconv.pl
|
||||
usr/sbin/xinetd
|
||||
#usr/share/man/man5/xinetd.conf.5
|
||||
#usr/share/man/man8/itox.8
|
||||
#usr/share/man/man8/xconv.pl.8
|
||||
#usr/share/man/man8/xinetd.8
|
||||
#usr/share/man/man8/xinetd.log.8
|
||||
var/ipfire/xinetd
|
||||
var/ipfire/xinetd/xinetd.conf
|
||||
var/ipfire/xinetd/xinetd.d
|
||||
@@ -1,11 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user