mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Hinzugefuegt:
* PHP 5.1.4 * HTTPD-2.2.2 * GNU readline 5.1 DAS WEBINTERFACE ARBEITET MOEGLICHERWEISE NICHT! git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@273 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
------------------------------------------------------------------------
|
||||
r272 | delaco | 2006-09-12 19:51:12 +0200 (Tue, 12 Sep 2006) | 1 line
|
||||
|
||||
MySQL Build-Fix.
|
||||
------------------------------------------------------------------------
|
||||
r271 | ms | 2006-09-11 21:47:34 +0200 (Mon, 11 Sep 2006) | 1 line
|
||||
|
||||
Vergessen es ins BuildScript zu machen.
|
||||
|
||||
@@ -107,6 +107,7 @@
|
||||
* hddtemp-0.3-beta14
|
||||
* hdparm-6.3
|
||||
* htop-0.6.2
|
||||
* httpd-2.2.2
|
||||
* iana-etc-2.00
|
||||
* ibod
|
||||
* iftop-0.17
|
||||
@@ -164,6 +165,7 @@
|
||||
* mpeg2dec-20050802
|
||||
* mpg123-0.59r
|
||||
* mtools-3.9.9
|
||||
* mysql-5.0.24a
|
||||
* nagios-2.5
|
||||
* nano-1.2.4
|
||||
* nash
|
||||
@@ -190,10 +192,12 @@
|
||||
* pcmcia-cs-3.2.8
|
||||
* pcre-4.5
|
||||
* perl-5.8.5
|
||||
* php-5.1.4
|
||||
* pkg-config-0.20
|
||||
* popt-1.7
|
||||
* portmap_5beta
|
||||
* postfix-2.2.10
|
||||
* postfix-2.2.11
|
||||
* ppp-2.4.2
|
||||
* pptp-1.6.0
|
||||
* procinfo-18
|
||||
@@ -202,6 +206,7 @@
|
||||
* psmisc-21.4
|
||||
* pulsar-4.0.19
|
||||
* razor-agents-2.81
|
||||
* readline-5.1
|
||||
* rp-pppoe-3.5
|
||||
* rrdtool-1.0.49
|
||||
* samba-3.0.23b
|
||||
@@ -216,7 +221,7 @@
|
||||
* sox-12.18.1
|
||||
* spandsp-0.0.2pre25
|
||||
* speedtouch-1.2
|
||||
* squid-2.5.STABLE14
|
||||
* squid-2.6.STABLE3
|
||||
* squid-graph-3.1
|
||||
* squidGuard-1.2.0
|
||||
* startscripts
|
||||
|
||||
93
lfs/apache2
Normal file
93
lfs/apache2
Normal file
@@ -0,0 +1,93 @@
|
||||
###############################################################################
|
||||
# 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.2
|
||||
|
||||
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
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE) \
|
||||
httpd-2.2.2-config-1.patch
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
httpd-2.2.2-config-1.patch = $(DL_FROM)/httpd-2.2.2-config-1.patch
|
||||
|
||||
$(DL_FILE)_MD5 = 9c759a9744436de6a6aa2ddbc49d6e81
|
||||
httpd-2.2.2-config-1.patch_MD5 = e02a3ec5925eb9e111400b9aa229f822
|
||||
|
||||
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 jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_DL)/httpd-2.2.2-config-1.patch
|
||||
cd $(DIR_APP) && ./configure --enable-layout=FHS --enable-mods-shared=all
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
chown -v root:root /usr/lib/apache/httpd.exp \
|
||||
/usr/sbin/{apxs,apachectl,dbmmanage,envvars{,-std}} \
|
||||
/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
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
@@ -88,6 +88,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
--with-unix-socket-path=/var/run/mysql/mysql.sock \
|
||||
--without-debug \
|
||||
--without-bench \
|
||||
--without-readline \
|
||||
--with-berkeley-db \
|
||||
--with-extra-charsets=all
|
||||
cd $(DIR_APP) && make testdir=/tmp/mysql
|
||||
|
||||
106
lfs/php
Normal file
106
lfs/php
Normal file
@@ -0,0 +1,106 @@
|
||||
###############################################################################
|
||||
# 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 = 5.1.4
|
||||
|
||||
THISAPP = php-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = php
|
||||
PAK_VER = 1
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 66a806161d4a2d3b5153ebe4cd0f2e1c
|
||||
|
||||
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 jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && sed -i 's/const char \*errpfx,/const DB_ENV *dbenv, & const/' ext/dba/dba_db4.c
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-apxs2 \
|
||||
--enable-force-cgi-redirect \
|
||||
--enable-discard-path \
|
||||
--with-config-file-path=/etc \
|
||||
--with-zlib \
|
||||
--enable-bcmath \
|
||||
--with-bz2 \
|
||||
--enable-calendar \
|
||||
--enable-dba \
|
||||
--enable-exif \
|
||||
--enable-ftp \
|
||||
--with-gettext \
|
||||
--enable-mbstring \
|
||||
--with-ncurses \
|
||||
--with-readline
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
cd $(DIR_APP) && install -v -m644 php.ini-recommended /etc/php.ini
|
||||
cd $(DIR_APP) && install -v -m755 -d /usr/share/doc/php-$(VER)
|
||||
cd $(DIR_APP) && install -v -m644 CODING_STANDARDS EXTENSIONS INSTALL NEWS README* TODO* UPGRADING php.gif \
|
||||
/usr/share/doc/php-$(VER)
|
||||
cd $(DIR_APP) && ln -v -s /usr/lib/php/doc/Archive_Tar/docs/Archive_Tar.txt /usr/share/doc/php-$(VER)
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
87
lfs/readline
Normal file
87
lfs/readline
Normal file
@@ -0,0 +1,87 @@
|
||||
###############################################################################
|
||||
# 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 = 5.1
|
||||
|
||||
THISAPP = readline-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 7ee5a692db88b30ca48927a13fd60e46
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 -i $(DIR_DL)/readline-5.1-fixes-3.patch
|
||||
cd $(DIR_APP) && sed -i '/MV.*old/d' Makefile.in
|
||||
cd $(DIR_APP) && sed -i '/{OLDSUFF}/c:' support/shlib-install
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --libdir=/lib
|
||||
cd $(DIR_APP) && make SHLIB_LIBS=-lncurses
|
||||
cd $(DIR_APP) && make install
|
||||
chmod -v 755 /lib/lib{readline,history}.so*
|
||||
mv -v /lib/lib{readline,history}.a /usr/lib
|
||||
rm -v /lib/lib{readline,history}.so
|
||||
ln -sfv ../../lib/libreadline.so.5 /usr/lib/libreadline.so
|
||||
ln -sfv ../../lib/libhistory.so.5 /usr/lib/libhistory.so
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
7
make.sh
7
make.sh
@@ -599,10 +599,15 @@ buildipcop() {
|
||||
ipcopmake libcap
|
||||
ipcopmake pciutils
|
||||
ipcopmake pcre
|
||||
ipcopmake readline
|
||||
ipcopmake berkeley
|
||||
ipcopmake BerkeleyDB ## The Perl module
|
||||
ipcopmake mysql
|
||||
ipcopmake saslauthd PASS=1
|
||||
ipcopmake openldap
|
||||
ipcopmake apache
|
||||
ipcopmake apache2
|
||||
ipcopmake php
|
||||
ipcopmake arping
|
||||
ipcopmake beep
|
||||
ipcopmake bind
|
||||
@@ -671,8 +676,6 @@ buildipcop() {
|
||||
ipcopmake setup
|
||||
ipcopmake snort
|
||||
#ipcopmake speedycgi
|
||||
ipcopmake saslauthd PASS=1
|
||||
ipcopmake openldap
|
||||
ipcopmake squid
|
||||
ipcopmake squid-graph
|
||||
ipcopmake squidguard
|
||||
|
||||
@@ -27749,3 +27749,456 @@ usr/sbin/xinetd
|
||||
#usr/share/man/man8/xinetd.log.8
|
||||
var/ipfire/xinetd/xinetd.conf
|
||||
#var/ipfire/xinetd/xinetd.d
|
||||
##
|
||||
## readline-5.1
|
||||
##
|
||||
lib/libhistory.so.5
|
||||
lib/libhistory.so.5.1
|
||||
lib/libreadline.so.5
|
||||
lib/libreadline.so.5.1
|
||||
#usr/include/readline
|
||||
#usr/include/readline/chardefs.h
|
||||
#usr/include/readline/history.h
|
||||
#usr/include/readline/keymaps.h
|
||||
#usr/include/readline/readline.h
|
||||
#usr/include/readline/rlconf.h
|
||||
#usr/include/readline/rlstdc.h
|
||||
#usr/include/readline/rltypedefs.h
|
||||
#usr/include/readline/tilde.h
|
||||
#usr/lib/libhistory.a
|
||||
usr/lib/libhistory.so
|
||||
#usr/lib/libreadline.a
|
||||
usr/lib/libreadline.so
|
||||
#usr/share/info/history.info
|
||||
#usr/share/info/readline.info
|
||||
#usr/share/info/rluserman.info
|
||||
#usr/share/man/man3/history.3
|
||||
#usr/share/man/man3/readline.3
|
||||
##
|
||||
## php-5.1.4
|
||||
##
|
||||
etc/pear.conf
|
||||
etc/php.ini
|
||||
usr/bin/pear
|
||||
usr/bin/peardev
|
||||
usr/bin/pecl
|
||||
usr/bin/php
|
||||
#usr/bin/php-config
|
||||
usr/bin/phpize
|
||||
#usr/include/php
|
||||
#usr/include/php/TSRM
|
||||
#usr/include/php/TSRM/TSRM.h
|
||||
#usr/include/php/TSRM/acconfig.h
|
||||
#usr/include/php/TSRM/readdir.h
|
||||
#usr/include/php/TSRM/tsrm_config.h
|
||||
#usr/include/php/TSRM/tsrm_config.w32.h
|
||||
#usr/include/php/TSRM/tsrm_config_common.h
|
||||
#usr/include/php/TSRM/tsrm_nw.h
|
||||
#usr/include/php/TSRM/tsrm_strtok_r.h
|
||||
#usr/include/php/TSRM/tsrm_virtual_cwd.h
|
||||
#usr/include/php/TSRM/tsrm_win32.h
|
||||
#usr/include/php/Zend
|
||||
#usr/include/php/Zend/FlexLexer.h
|
||||
#usr/include/php/Zend/acconfig.h
|
||||
#usr/include/php/Zend/zend.h
|
||||
#usr/include/php/Zend/zend_API.h
|
||||
#usr/include/php/Zend/zend_alloc.h
|
||||
#usr/include/php/Zend/zend_builtin_functions.h
|
||||
#usr/include/php/Zend/zend_compile.h
|
||||
#usr/include/php/Zend/zend_config.h
|
||||
#usr/include/php/Zend/zend_config.nw.h
|
||||
#usr/include/php/Zend/zend_config.w32.h
|
||||
#usr/include/php/Zend/zend_constants.h
|
||||
#usr/include/php/Zend/zend_dynamic_array.h
|
||||
#usr/include/php/Zend/zend_errors.h
|
||||
#usr/include/php/Zend/zend_exceptions.h
|
||||
#usr/include/php/Zend/zend_execute.h
|
||||
#usr/include/php/Zend/zend_extensions.h
|
||||
#usr/include/php/Zend/zend_fast_cache.h
|
||||
#usr/include/php/Zend/zend_globals.h
|
||||
#usr/include/php/Zend/zend_globals_macros.h
|
||||
#usr/include/php/Zend/zend_hash.h
|
||||
#usr/include/php/Zend/zend_highlight.h
|
||||
#usr/include/php/Zend/zend_indent.h
|
||||
#usr/include/php/Zend/zend_ini.h
|
||||
#usr/include/php/Zend/zend_ini_parser.h
|
||||
#usr/include/php/Zend/zend_ini_scanner.h
|
||||
#usr/include/php/Zend/zend_interfaces.h
|
||||
#usr/include/php/Zend/zend_istdiostream.h
|
||||
#usr/include/php/Zend/zend_iterators.h
|
||||
#usr/include/php/Zend/zend_language_parser.h
|
||||
#usr/include/php/Zend/zend_language_scanner.h
|
||||
#usr/include/php/Zend/zend_list.h
|
||||
#usr/include/php/Zend/zend_llist.h
|
||||
#usr/include/php/Zend/zend_mm.h
|
||||
#usr/include/php/Zend/zend_modules.h
|
||||
#usr/include/php/Zend/zend_multibyte.h
|
||||
#usr/include/php/Zend/zend_multiply.h
|
||||
#usr/include/php/Zend/zend_object_handlers.h
|
||||
#usr/include/php/Zend/zend_objects.h
|
||||
#usr/include/php/Zend/zend_objects_API.h
|
||||
#usr/include/php/Zend/zend_operators.h
|
||||
#usr/include/php/Zend/zend_ptr_stack.h
|
||||
#usr/include/php/Zend/zend_qsort.h
|
||||
#usr/include/php/Zend/zend_stack.h
|
||||
#usr/include/php/Zend/zend_static_allocator.h
|
||||
#usr/include/php/Zend/zend_stream.h
|
||||
#usr/include/php/Zend/zend_strtod.h
|
||||
#usr/include/php/Zend/zend_ts_hash.h
|
||||
#usr/include/php/Zend/zend_types.h
|
||||
#usr/include/php/Zend/zend_variables.h
|
||||
#usr/include/php/Zend/zend_vm.h
|
||||
#usr/include/php/Zend/zend_vm_def.h
|
||||
#usr/include/php/Zend/zend_vm_execute.h
|
||||
#usr/include/php/Zend/zend_vm_opcodes.h
|
||||
#usr/include/php/ext
|
||||
#usr/include/php/ext/date
|
||||
#usr/include/php/ext/date/lib
|
||||
#usr/include/php/ext/date/lib/timelib.h
|
||||
#usr/include/php/ext/date/lib/timelib_config.h
|
||||
#usr/include/php/ext/date/lib/timelib_structs.h
|
||||
#usr/include/php/ext/date/php_date.h
|
||||
#usr/include/php/ext/dom
|
||||
#usr/include/php/ext/dom/xml_common.h
|
||||
#usr/include/php/ext/hash
|
||||
#usr/include/php/ext/hash/php_hash.h
|
||||
#usr/include/php/ext/hash/php_hash_adler32.h
|
||||
#usr/include/php/ext/hash/php_hash_crc32.h
|
||||
#usr/include/php/ext/hash/php_hash_gost.h
|
||||
#usr/include/php/ext/hash/php_hash_haval.h
|
||||
#usr/include/php/ext/hash/php_hash_md.h
|
||||
#usr/include/php/ext/hash/php_hash_ripemd.h
|
||||
#usr/include/php/ext/hash/php_hash_sha.h
|
||||
#usr/include/php/ext/hash/php_hash_snefru.h
|
||||
#usr/include/php/ext/hash/php_hash_tiger.h
|
||||
#usr/include/php/ext/hash/php_hash_types.h
|
||||
#usr/include/php/ext/hash/php_hash_whirlpool.h
|
||||
#usr/include/php/ext/iconv
|
||||
#usr/include/php/ext/iconv/php_have_bsd_iconv.h
|
||||
#usr/include/php/ext/iconv/php_have_glibc_iconv.h
|
||||
#usr/include/php/ext/iconv/php_have_iconv.h
|
||||
#usr/include/php/ext/iconv/php_have_libiconv.h
|
||||
#usr/include/php/ext/iconv/php_iconv.h
|
||||
#usr/include/php/ext/iconv/php_iconv_supports_errno.h
|
||||
#usr/include/php/ext/iconv/php_php_iconv_h_path.h
|
||||
#usr/include/php/ext/iconv/php_php_iconv_impl.h
|
||||
#usr/include/php/ext/libxml
|
||||
#usr/include/php/ext/libxml/php_libxml.h
|
||||
#usr/include/php/ext/mbstring
|
||||
#usr/include/php/ext/mbstring/libmbfl
|
||||
#usr/include/php/ext/mbstring/libmbfl/config.h
|
||||
#usr/include/php/ext/pcre
|
||||
#usr/include/php/ext/pcre/pcrelib
|
||||
#usr/include/php/ext/pcre/pcrelib/internal.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcre.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcre_internal.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcre_scanner.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcre_stringpiece.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcrecpp.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcrecpparg.h
|
||||
#usr/include/php/ext/pcre/pcrelib/pcreposix.h
|
||||
#usr/include/php/ext/pcre/pcrelib/ucp.h
|
||||
#usr/include/php/ext/pcre/pcrelib/ucpinternal.h
|
||||
#usr/include/php/ext/pcre/php_pcre.h
|
||||
#usr/include/php/ext/pdo
|
||||
#usr/include/php/ext/pdo/php_pdo.h
|
||||
#usr/include/php/ext/pdo/php_pdo_driver.h
|
||||
#usr/include/php/ext/session
|
||||
#usr/include/php/ext/session/mod_files.h
|
||||
#usr/include/php/ext/session/mod_user.h
|
||||
#usr/include/php/ext/session/php_session.h
|
||||
#usr/include/php/ext/sqlite
|
||||
#usr/include/php/ext/sqlite/libsqlite
|
||||
#usr/include/php/ext/sqlite/libsqlite/src
|
||||
#usr/include/php/ext/sqlite/libsqlite/src/sqlite.h
|
||||
#usr/include/php/ext/standard
|
||||
#usr/include/php/ext/standard/base64.h
|
||||
#usr/include/php/ext/standard/basic_functions.h
|
||||
#usr/include/php/ext/standard/crc32.h
|
||||
#usr/include/php/ext/standard/credits.h
|
||||
#usr/include/php/ext/standard/credits_ext.h
|
||||
#usr/include/php/ext/standard/credits_sapi.h
|
||||
#usr/include/php/ext/standard/css.h
|
||||
#usr/include/php/ext/standard/cyr_convert.h
|
||||
#usr/include/php/ext/standard/datetime.h
|
||||
#usr/include/php/ext/standard/dl.h
|
||||
#usr/include/php/ext/standard/dns.h
|
||||
#usr/include/php/ext/standard/exec.h
|
||||
#usr/include/php/ext/standard/file.h
|
||||
#usr/include/php/ext/standard/flock_compat.h
|
||||
#usr/include/php/ext/standard/fsock.h
|
||||
#usr/include/php/ext/standard/head.h
|
||||
#usr/include/php/ext/standard/html.h
|
||||
#usr/include/php/ext/standard/info.h
|
||||
#usr/include/php/ext/standard/md5.h
|
||||
#usr/include/php/ext/standard/microtime.h
|
||||
#usr/include/php/ext/standard/pack.h
|
||||
#usr/include/php/ext/standard/pageinfo.h
|
||||
#usr/include/php/ext/standard/php_array.h
|
||||
#usr/include/php/ext/standard/php_assert.h
|
||||
#usr/include/php/ext/standard/php_browscap.h
|
||||
#usr/include/php/ext/standard/php_crypt.h
|
||||
#usr/include/php/ext/standard/php_dir.h
|
||||
#usr/include/php/ext/standard/php_ext_syslog.h
|
||||
#usr/include/php/ext/standard/php_filestat.h
|
||||
#usr/include/php/ext/standard/php_fopen_wrappers.h
|
||||
#usr/include/php/ext/standard/php_ftok.h
|
||||
#usr/include/php/ext/standard/php_http.h
|
||||
#usr/include/php/ext/standard/php_image.h
|
||||
#usr/include/php/ext/standard/php_incomplete_class.h
|
||||
#usr/include/php/ext/standard/php_iptc.h
|
||||
#usr/include/php/ext/standard/php_lcg.h
|
||||
#usr/include/php/ext/standard/php_link.h
|
||||
#usr/include/php/ext/standard/php_mail.h
|
||||
#usr/include/php/ext/standard/php_math.h
|
||||
#usr/include/php/ext/standard/php_metaphone.h
|
||||
#usr/include/php/ext/standard/php_rand.h
|
||||
#usr/include/php/ext/standard/php_smart_str.h
|
||||
#usr/include/php/ext/standard/php_smart_str_public.h
|
||||
#usr/include/php/ext/standard/php_standard.h
|
||||
#usr/include/php/ext/standard/php_string.h
|
||||
#usr/include/php/ext/standard/php_type.h
|
||||
#usr/include/php/ext/standard/php_uuencode.h
|
||||
#usr/include/php/ext/standard/php_var.h
|
||||
#usr/include/php/ext/standard/php_versioning.h
|
||||
#usr/include/php/ext/standard/proc_open.h
|
||||
#usr/include/php/ext/standard/quot_print.h
|
||||
#usr/include/php/ext/standard/reg.h
|
||||
#usr/include/php/ext/standard/scanf.h
|
||||
#usr/include/php/ext/standard/sha1.h
|
||||
#usr/include/php/ext/standard/streamsfuncs.h
|
||||
#usr/include/php/ext/standard/uniqid.h
|
||||
#usr/include/php/ext/standard/url.h
|
||||
#usr/include/php/ext/standard/url_scanner.h
|
||||
#usr/include/php/ext/standard/url_scanner_ex.h
|
||||
#usr/include/php/ext/xml
|
||||
#usr/include/php/ext/xml/expat_compat.h
|
||||
#usr/include/php/ext/xml/php_xml.h
|
||||
#usr/include/php/include
|
||||
#usr/include/php/main
|
||||
#usr/include/php/main/SAPI.h
|
||||
#usr/include/php/main/build-defs.h
|
||||
#usr/include/php/main/config.w32.h
|
||||
#usr/include/php/main/fopen_wrappers.h
|
||||
#usr/include/php/main/logos.h
|
||||
#usr/include/php/main/php.h
|
||||
#usr/include/php/main/php3_compat.h
|
||||
#usr/include/php/main/php_compat.h
|
||||
#usr/include/php/main/php_config.h
|
||||
#usr/include/php/main/php_content_types.h
|
||||
#usr/include/php/main/php_globals.h
|
||||
#usr/include/php/main/php_ini.h
|
||||
#usr/include/php/main/php_logos.h
|
||||
#usr/include/php/main/php_main.h
|
||||
#usr/include/php/main/php_memory_streams.h
|
||||
#usr/include/php/main/php_network.h
|
||||
#usr/include/php/main/php_open_temporary_file.h
|
||||
#usr/include/php/main/php_output.h
|
||||
#usr/include/php/main/php_reentrancy.h
|
||||
#usr/include/php/main/php_regex.h
|
||||
#usr/include/php/main/php_scandir.h
|
||||
#usr/include/php/main/php_streams.h
|
||||
#usr/include/php/main/php_syslog.h
|
||||
#usr/include/php/main/php_ticks.h
|
||||
#usr/include/php/main/php_variables.h
|
||||
#usr/include/php/main/php_version.h
|
||||
#usr/include/php/main/rfc1867.h
|
||||
#usr/include/php/main/safe_mode.h
|
||||
#usr/include/php/main/snprintf.h
|
||||
#usr/include/php/main/spprintf.h
|
||||
#usr/include/php/main/streams
|
||||
#usr/include/php/main/streams/php_stream_context.h
|
||||
#usr/include/php/main/streams/php_stream_filter_api.h
|
||||
#usr/include/php/main/streams/php_stream_mmap.h
|
||||
#usr/include/php/main/streams/php_stream_plain_wrapper.h
|
||||
#usr/include/php/main/streams/php_stream_transport.h
|
||||
#usr/include/php/main/streams/php_stream_userspace.h
|
||||
#usr/include/php/main/streams/php_streams_int.h
|
||||
#usr/include/php/main/win95nt.h
|
||||
#usr/include/php/regex
|
||||
#usr/include/php/regex/cclass.h
|
||||
#usr/include/php/regex/cname.h
|
||||
#usr/include/php/regex/regex.h
|
||||
#usr/include/php/regex/regex2.h
|
||||
#usr/include/php/regex/regex_extra.h
|
||||
#usr/include/php/regex/utils.h
|
||||
usr/lib/apache/libphp5.so
|
||||
usr/lib/php
|
||||
#usr/lib/php/.channels
|
||||
#usr/lib/php/.channels/.alias
|
||||
#usr/lib/php/.channels/.alias/pear.txt
|
||||
#usr/lib/php/.channels/.alias/pecl.txt
|
||||
#usr/lib/php/.channels/__uri.reg
|
||||
#usr/lib/php/.channels/pear.php.net.reg
|
||||
#usr/lib/php/.channels/pecl.php.net.reg
|
||||
#usr/lib/php/.depdb
|
||||
#usr/lib/php/.depdblock
|
||||
#usr/lib/php/.filemap
|
||||
#usr/lib/php/.lock
|
||||
#usr/lib/php/.registry
|
||||
#usr/lib/php/.registry/.channel.__uri
|
||||
#usr/lib/php/.registry/.channel.pecl.php.net
|
||||
#usr/lib/php/.registry/archive_tar.reg
|
||||
#usr/lib/php/.registry/console_getopt.reg
|
||||
#usr/lib/php/.registry/pear.reg
|
||||
#usr/lib/php/Archive
|
||||
#usr/lib/php/Archive/Tar.php
|
||||
#usr/lib/php/Console
|
||||
#usr/lib/php/Console/Getopt.php
|
||||
#usr/lib/php/OS
|
||||
#usr/lib/php/OS/Guess.php
|
||||
#usr/lib/php/PEAR
|
||||
#usr/lib/php/PEAR.php
|
||||
#usr/lib/php/PEAR/Autoloader.php
|
||||
#usr/lib/php/PEAR/Builder.php
|
||||
#usr/lib/php/PEAR/ChannelFile
|
||||
#usr/lib/php/PEAR/ChannelFile.php
|
||||
#usr/lib/php/PEAR/ChannelFile/Parser.php
|
||||
#usr/lib/php/PEAR/Command
|
||||
#usr/lib/php/PEAR/Command.php
|
||||
#usr/lib/php/PEAR/Command/Auth.php
|
||||
#usr/lib/php/PEAR/Command/Auth.xml
|
||||
#usr/lib/php/PEAR/Command/Build.php
|
||||
#usr/lib/php/PEAR/Command/Build.xml
|
||||
#usr/lib/php/PEAR/Command/Channels.php
|
||||
#usr/lib/php/PEAR/Command/Channels.xml
|
||||
#usr/lib/php/PEAR/Command/Common.php
|
||||
#usr/lib/php/PEAR/Command/Config.php
|
||||
#usr/lib/php/PEAR/Command/Config.xml
|
||||
#usr/lib/php/PEAR/Command/Install.php
|
||||
#usr/lib/php/PEAR/Command/Install.xml
|
||||
#usr/lib/php/PEAR/Command/Mirror.php
|
||||
#usr/lib/php/PEAR/Command/Mirror.xml
|
||||
#usr/lib/php/PEAR/Command/Package.php
|
||||
#usr/lib/php/PEAR/Command/Package.xml
|
||||
#usr/lib/php/PEAR/Command/Pickle.php
|
||||
#usr/lib/php/PEAR/Command/Pickle.xml
|
||||
#usr/lib/php/PEAR/Command/Registry.php
|
||||
#usr/lib/php/PEAR/Command/Registry.xml
|
||||
#usr/lib/php/PEAR/Command/Remote.php
|
||||
#usr/lib/php/PEAR/Command/Remote.xml
|
||||
#usr/lib/php/PEAR/Command/Test.php
|
||||
#usr/lib/php/PEAR/Command/Test.xml
|
||||
#usr/lib/php/PEAR/Common.php
|
||||
#usr/lib/php/PEAR/Config.php
|
||||
#usr/lib/php/PEAR/Dependency.php
|
||||
#usr/lib/php/PEAR/Dependency2.php
|
||||
#usr/lib/php/PEAR/DependencyDB.php
|
||||
#usr/lib/php/PEAR/Downloader
|
||||
#usr/lib/php/PEAR/Downloader.php
|
||||
#usr/lib/php/PEAR/Downloader/Package.php
|
||||
#usr/lib/php/PEAR/ErrorStack.php
|
||||
#usr/lib/php/PEAR/Exception.php
|
||||
#usr/lib/php/PEAR/Frontend
|
||||
#usr/lib/php/PEAR/Frontend.php
|
||||
#usr/lib/php/PEAR/Frontend/CLI.php
|
||||
#usr/lib/php/PEAR/Installer
|
||||
#usr/lib/php/PEAR/Installer.php
|
||||
#usr/lib/php/PEAR/Installer/Role
|
||||
#usr/lib/php/PEAR/Installer/Role.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Common.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Data.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Data.xml
|
||||
#usr/lib/php/PEAR/Installer/Role/Doc.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Doc.xml
|
||||
#usr/lib/php/PEAR/Installer/Role/Ext.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Ext.xml
|
||||
#usr/lib/php/PEAR/Installer/Role/Php.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Php.xml
|
||||
#usr/lib/php/PEAR/Installer/Role/Script.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Script.xml
|
||||
#usr/lib/php/PEAR/Installer/Role/Src.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Src.xml
|
||||
#usr/lib/php/PEAR/Installer/Role/Test.php
|
||||
#usr/lib/php/PEAR/Installer/Role/Test.xml
|
||||
#usr/lib/php/PEAR/PackageFile
|
||||
#usr/lib/php/PEAR/PackageFile.php
|
||||
#usr/lib/php/PEAR/PackageFile/Generator
|
||||
#usr/lib/php/PEAR/PackageFile/Generator/v1.php
|
||||
#usr/lib/php/PEAR/PackageFile/Generator/v2.php
|
||||
#usr/lib/php/PEAR/PackageFile/Parser
|
||||
#usr/lib/php/PEAR/PackageFile/Parser/v1.php
|
||||
#usr/lib/php/PEAR/PackageFile/Parser/v2.php
|
||||
#usr/lib/php/PEAR/PackageFile/v1.php
|
||||
#usr/lib/php/PEAR/PackageFile/v2
|
||||
#usr/lib/php/PEAR/PackageFile/v2.php
|
||||
#usr/lib/php/PEAR/PackageFile/v2/Validator.php
|
||||
#usr/lib/php/PEAR/PackageFile/v2/rw.php
|
||||
#usr/lib/php/PEAR/Packager.php
|
||||
#usr/lib/php/PEAR/REST
|
||||
#usr/lib/php/PEAR/REST.php
|
||||
#usr/lib/php/PEAR/REST/10.php
|
||||
#usr/lib/php/PEAR/REST/11.php
|
||||
#usr/lib/php/PEAR/Registry.php
|
||||
#usr/lib/php/PEAR/Remote.php
|
||||
#usr/lib/php/PEAR/RunTest.php
|
||||
#usr/lib/php/PEAR/Task
|
||||
#usr/lib/php/PEAR/Task/Common.php
|
||||
#usr/lib/php/PEAR/Task/Postinstallscript
|
||||
#usr/lib/php/PEAR/Task/Postinstallscript.php
|
||||
#usr/lib/php/PEAR/Task/Postinstallscript/rw.php
|
||||
#usr/lib/php/PEAR/Task/Replace
|
||||
#usr/lib/php/PEAR/Task/Replace.php
|
||||
#usr/lib/php/PEAR/Task/Replace/rw.php
|
||||
#usr/lib/php/PEAR/Task/Unixeol
|
||||
#usr/lib/php/PEAR/Task/Unixeol.php
|
||||
#usr/lib/php/PEAR/Task/Unixeol/rw.php
|
||||
#usr/lib/php/PEAR/Task/Windowseol
|
||||
#usr/lib/php/PEAR/Task/Windowseol.php
|
||||
#usr/lib/php/PEAR/Task/Windowseol/rw.php
|
||||
#usr/lib/php/PEAR/Validate.php
|
||||
#usr/lib/php/PEAR/Validator
|
||||
#usr/lib/php/PEAR/Validator/PECL.php
|
||||
#usr/lib/php/PEAR/XMLParser.php
|
||||
#usr/lib/php/System.php
|
||||
#usr/lib/php/build
|
||||
#usr/lib/php/build/Makefile.global
|
||||
#usr/lib/php/build/acinclude.m4
|
||||
#usr/lib/php/build/config.guess
|
||||
#usr/lib/php/build/config.sub
|
||||
#usr/lib/php/build/libtool.m4
|
||||
#usr/lib/php/build/ltmain.sh
|
||||
#usr/lib/php/build/mkdep.awk
|
||||
#usr/lib/php/build/phpize.m4
|
||||
#usr/lib/php/build/run-tests.php
|
||||
#usr/lib/php/build/scan_makefile_in.awk
|
||||
#usr/lib/php/build/shtool
|
||||
#usr/lib/php/data
|
||||
#usr/lib/php/data/PEAR
|
||||
#usr/lib/php/data/PEAR/package.dtd
|
||||
#usr/lib/php/data/PEAR/template.spec
|
||||
#usr/lib/php/doc
|
||||
#usr/lib/php/doc/Archive_Tar
|
||||
#usr/lib/php/doc/Archive_Tar/docs
|
||||
#usr/lib/php/doc/Archive_Tar/docs/Archive_Tar.txt
|
||||
#usr/lib/php/pearcmd.php
|
||||
#usr/lib/php/peclcmd.php
|
||||
#usr/share/doc/php-5.1.4
|
||||
#usr/share/doc/php-5.1.4/Archive_Tar.txt
|
||||
#usr/share/doc/php-5.1.4/CODING_STANDARDS
|
||||
#usr/share/doc/php-5.1.4/EXTENSIONS
|
||||
#usr/share/doc/php-5.1.4/INSTALL
|
||||
#usr/share/doc/php-5.1.4/NEWS
|
||||
#usr/share/doc/php-5.1.4/README.CVS-RULES
|
||||
#usr/share/doc/php-5.1.4/README.EXTENSIONS
|
||||
#usr/share/doc/php-5.1.4/README.EXT_SKEL
|
||||
#usr/share/doc/php-5.1.4/README.PARAMETER_PARSING_API
|
||||
#usr/share/doc/php-5.1.4/README.PHP4-TO-PHP5-THIN-CHANGES
|
||||
#usr/share/doc/php-5.1.4/README.QNX
|
||||
#usr/share/doc/php-5.1.4/README.SELF-CONTAINED-EXTENSIONS
|
||||
#usr/share/doc/php-5.1.4/README.STREAMS
|
||||
#usr/share/doc/php-5.1.4/README.SUBMITTING_PATCH
|
||||
#usr/share/doc/php-5.1.4/README.TESTING
|
||||
#usr/share/doc/php-5.1.4/README.TESTING2
|
||||
#usr/share/doc/php-5.1.4/README.UNIX-BUILD-SYSTEM
|
||||
#usr/share/doc/php-5.1.4/README.WIN32-BUILD-SYSTEM
|
||||
#usr/share/doc/php-5.1.4/README.Zeus
|
||||
#usr/share/doc/php-5.1.4/README.input_filter
|
||||
#usr/share/doc/php-5.1.4/TODO
|
||||
#usr/share/doc/php-5.1.4/TODO-5.1
|
||||
#usr/share/doc/php-5.1.4/TODO-PHP5
|
||||
#usr/share/doc/php-5.1.4/UPGRADING
|
||||
#usr/share/doc/php-5.1.4/php.gif
|
||||
#usr/share/man/man1/php-config.1
|
||||
#usr/share/man/man1/php.1
|
||||
#usr/share/man/man1/phpize.1
|
||||
|
||||
0
src/paks/apache2/ROOTFILES
Normal file
0
src/paks/apache2/ROOTFILES
Normal file
11
src/paks/apache2/install.sh
Normal file
11
src/paks/apache2/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/apache2/uninstall.sh
Normal file
10
src/paks/apache2/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/php/ROOTFILES
Normal file
0
src/paks/php/ROOTFILES
Normal file
11
src/paks/php/install.sh
Normal file
11
src/paks/php/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/php/uninstall.sh
Normal file
10
src/paks/php/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
|
||||
Reference in New Issue
Block a user