From 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 Mon Sep 17 00:00:00 2001 From: wbx Date: Sun, 17 May 2009 14:41:34 +0200 Subject: Initial import --- package/php/Config.in | 115 +++++++ package/php/Makefile | 167 +++++++++ package/php/files/php.ini | 561 +++++++++++++++++++++++++++++++ package/php/files/php.init | 28 ++ package/php/ipkg/php-cgi.conffiles | 1 + package/php/ipkg/php-cgi.control | 6 + package/php/ipkg/php-cli.conffiles | 1 + package/php/ipkg/php-cli.control | 6 + package/php/ipkg/php-fastcgi.conffiles | 1 + package/php/ipkg/php-fastcgi.control | 6 + package/php/ipkg/php-fastcgi.postinst | 4 + package/php/ipkg/php-mod-curl.control | 5 + package/php/ipkg/php-mod-ftp.control | 5 + package/php/ipkg/php-mod-gd.control | 5 + package/php/ipkg/php-mod-gmp.control | 5 + package/php/ipkg/php-mod-ldap.control | 5 + package/php/ipkg/php-mod-mysql.control | 5 + package/php/ipkg/php-mod-openssl.control | 5 + package/php/ipkg/php-mod-pcre.control | 5 + package/php/ipkg/php-mod-pgsql.control | 5 + package/php/ipkg/php-mod-session.control | 5 + package/php/ipkg/php-mod-sockets.control | 5 + package/php/ipkg/php-mod-sqlite.control | 5 + package/php/ipkg/php-mod-xml.control | 5 + 24 files changed, 961 insertions(+) create mode 100644 package/php/Config.in create mode 100644 package/php/Makefile create mode 100644 package/php/files/php.ini create mode 100644 package/php/files/php.init create mode 100644 package/php/ipkg/php-cgi.conffiles create mode 100644 package/php/ipkg/php-cgi.control create mode 100644 package/php/ipkg/php-cli.conffiles create mode 100644 package/php/ipkg/php-cli.control create mode 100644 package/php/ipkg/php-fastcgi.conffiles create mode 100644 package/php/ipkg/php-fastcgi.control create mode 100644 package/php/ipkg/php-fastcgi.postinst create mode 100644 package/php/ipkg/php-mod-curl.control create mode 100644 package/php/ipkg/php-mod-ftp.control create mode 100644 package/php/ipkg/php-mod-gd.control create mode 100644 package/php/ipkg/php-mod-gmp.control create mode 100644 package/php/ipkg/php-mod-ldap.control create mode 100644 package/php/ipkg/php-mod-mysql.control create mode 100644 package/php/ipkg/php-mod-openssl.control create mode 100644 package/php/ipkg/php-mod-pcre.control create mode 100644 package/php/ipkg/php-mod-pgsql.control create mode 100644 package/php/ipkg/php-mod-session.control create mode 100644 package/php/ipkg/php-mod-sockets.control create mode 100644 package/php/ipkg/php-mod-sqlite.control create mode 100644 package/php/ipkg/php-mod-xml.control (limited to 'package/php') diff --git a/package/php/Config.in b/package/php/Config.in new file mode 100644 index 000000000..c62e58a52 --- /dev/null +++ b/package/php/Config.in @@ -0,0 +1,115 @@ +menu "php.............................. PHP Hypertext preprocessor" + +config ADK_COMPILE_PHP + prompt "php.............................. PHP Hypertext preprocessor" + bool + default n + +choice +prompt "PHP Mode" +default ADK_PACKAGE_PHP_FASTCGI +depends on ADK_COMPILE_PHP +config ADK_PACKAGE_PHP_FASTCGI + prompt "PHP built for FastCGI" + bool + select ADK_PACKAGE_LIBOPENSSL + select ADK_PACKAGE_ZLIB + help + PHP is a widely-used general-purpose scripting language that is especially + suited for Web development and can be embedded into HTML. + + http://www.php.net/ + +endchoice + +config ADK_PACKAGE_PHP_MOD_CURL + prompt "php-mod-curl..................... cURL module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBCURL + +config ADK_PACKAGE_PHP_MOD_FTP + prompt "php-mod-ftp...................... FTP module" + tristate + default n + depends ADK_COMPILE_PHP + +config ADK_PACKAGE_PHP_MOD_GD + prompt "php-mod-gd....................... GD graphics library module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBGD + select ADK_PACKAGE_LIBPNG + +config ADK_PACKAGE_PHP_MOD_GMP + prompt "php-mod-gmp...................... GMP module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBGMP + +config ADK_PACKAGE_PHP_MOD_LDAP + prompt "php-mod-ldap..................... LDAP module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBOPENLDAP + +config ADK_PACKAGE_PHP_MOD_MYSQL + prompt "php-mod-mysql.................... MySQL module" + tristate + default n + depends ADK_CXX + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBMYSQLCLIENT + +config ADK_PACKAGE_PHP_MOD_OPENSSL + prompt "php-mod-openssl.................. OpenSSL module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBOPENSSL + +config ADK_PACKAGE_PHP_MOD_PCRE + prompt "php-mod-pcre..................... PCRE module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBPCRE + +config ADK_PACKAGE_PHP_MOD_PGSQL + prompt "php-mod-pgsql.................... PostgreSQL module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBPQ + +config ADK_PACKAGE_PHP_MOD_SESSION + prompt "php-mod-session.................. Sessions module" + tristate + default n + depends ADK_COMPILE_PHP + +config ADK_PACKAGE_PHP_MOD_SQLITE + prompt "php-mod-sqlite................... SQLite module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBSQLITE + +config ADK_PACKAGE_PHP_MOD_SOCKETS + prompt "php-mod-sockets.................. Sockets module" + tristate + default n + depends ADK_COMPILE_PHP + +config ADK_PACKAGE_PHP_MOD_XML + prompt "php-mod-xml...................... XML module" + tristate + default n + depends ADK_COMPILE_PHP + select ADK_PACKAGE_LIBEXPAT + +endmenu diff --git a/package/php/Makefile b/package/php/Makefile new file mode 100644 index 000000000..4cee9d2c4 --- /dev/null +++ b/package/php/Makefile @@ -0,0 +1,167 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= php +PKG_VERSION:= 5.2.9 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 98b647561dc664adefe296106056cf11 +MASTER_SITES:= http://de.php.net/distributions/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,PHP_CLI,php-cli,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) +$(eval $(call PKG_template,PHP_FASTCGI,php-fastcgi,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +define PKG_mod_template + +INSTALL_MODS_$${ADK_PACKAGE_${1}}+= ${2}-install + +${2}-install: + ${INSTALL_DIR} $$(IDIR_$(1))/usr/lib/php + ${INSTALL_DATA} $(WRKBUILD)/modules/$(2).so $$(IDIR_$(1))/usr/lib/php + +endef + +PKG_CONFIGURE_OPTS:= \ + --without-pear \ + --disable-spl \ + --with-config-file-path=/etc \ + --enable-magic-quotes \ + --disable-short-tags \ + --disable-ctype \ + --disable-dom \ + --enable-ftp=shared \ + --without-gettext \ + --without-iconv \ + --disable-libxml \ + --without-libxml-dir \ + --disable-mbstring \ + --disable-mbregex \ + --with-openssl=shared,"$(STAGING_DIR)/usr" \ + --with-kerberos=no \ + --with-openssl-dir="$(STAGING_DIR)/usr" \ + --enable-session=shared \ + --disable-simplexml \ + --disable-soap \ + --enable-sockets=shared \ + --disable-tokenizer \ + --disable-filter \ + --disable-xmlreader \ + --disable-xmlwriter \ + --with-zlib="$(STAGING_DIR)/usr" \ + --with-zlib-dir="$(STAGING_DIR)/usr" \ + --enable-cli \ + --enable-cgi \ + --enable-fastcgi \ + --enable-force-cgi-redirect \ + --enable-discard-path \ + +ifneq ($(ADK_PACKAGE_PHP_MOD_CURL),) +PKG_CONFIGURE_OPTS+= --with-curl=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-curl +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_GD),) +PKG_CONFIGURE_OPTS+= --with-gd=shared,"$(STAGING_DIR)/usr" \ + --without-freetype-dir \ + --with-jpeg-dir="$(STAGING_DIR)/usr" \ + --with-png-dir="$(STAGING_DIR)/usr" \ + --without-xpm-dir \ + --without-ttf \ + --without-t1lib \ + --enable-gd-native-ttf \ + --disable-gd-jis-conv +else +PKG_CONFIGURE_OPTS+= --without-gd +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_GMP),) +PKG_CONFIGURE_OPTS+= --with-gmp=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-gmp +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_LDAP),) +PKG_CONFIGURE_OPTS+= --with-ldap=shared,"$(STAGING_DIR)/usr" \ + --with-ldap-sasl="$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-ldap +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_MYSQL),) +PKG_CONFIGURE_OPTS+= --with-mysql=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-mysql +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_PCRE),) +PKG_CONFIGURE_OPTS+= --with-pcre-regex=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-pcre-regex +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_PGSQL),) +PKG_CONFIGURE_OPTS+= --with-pgsql=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-pgsql +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_SQLITE),) +PKG_CONFIGURE_OPTS+= --without-sqlite +PKG_CONFIGURE_OPTS+= --with-pdo-sqlite=shared,"$(STAGING_DIR)/usr" +PKG_CONFIGURE_OPTS+= --enable-pdo=shared +else +PKG_CONFIGURE_OPTS+= --without-sqlite +endif +ifneq ($(ADK_PACKAGE_PHP_MOD_XML),) +PKG_CONFIGURE_OPTS+= --enable-xml=shared,"$(STAGING_DIR)/usr" \ + --with-libexpat-dir="$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --disable-xml +endif + +$(eval $(call PKG_template,PHP_MOD_CURL,php-mod-curl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_FTP,php-mod-ftp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_GD,php-mod-gd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_GMP,php-mod-gmp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_LDAP,php-mod-ldap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_MYSQL,php-mod-mysql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_OPENSSL,php-mod-openssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_PCRE,php-mod-pcre,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_PGSQL,php-mod-pgsql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_SESSION,php-mod-session,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_SOCKETS,php-mod-sockets,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_SQLITE,php-mod-sqlite,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,PHP_MOD_XML,php-mod-xml,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(eval $(call PKG_mod_template,PHP_MOD_CURL,curl)) +$(eval $(call PKG_mod_template,PHP_MOD_FTP,ftp)) +$(eval $(call PKG_mod_template,PHP_MOD_GD,gd)) +$(eval $(call PKG_mod_template,PHP_MOD_GMP,gmp)) +$(eval $(call PKG_mod_template,PHP_MOD_LDAP,ldap)) +$(eval $(call PKG_mod_template,PHP_MOD_MYSQL,mysql)) +$(eval $(call PKG_mod_template,PHP_MOD_OPENSSL,openssl)) +$(eval $(call PKG_mod_template,PHP_MOD_PCRE,pcre)) +$(eval $(call PKG_mod_template,PHP_MOD_PGSQL,pgsql)) +$(eval $(call PKG_mod_template,PHP_MOD_SESSION,session)) +$(eval $(call PKG_mod_template,PHP_MOD_SOCKETS,sockets)) +$(eval $(call PKG_mod_template,PHP_MOD_SQLITE,pdo)) +$(eval $(call PKG_mod_template,PHP_MOD_XML,xml)) + +TLDFLAGS+= -L$(STAGING_DIR)/usr/lib/mysql +CONFIGURE_STYLE:= gnu +CONFIGURE_ARGS+= $(PKG_CONFIGURE_OPTS) +BUILD_STYLE:= auto + +do-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m} + ${INSTALL_DIR} $(IDIR_PHP_CLI)/etc + ${INSTALL_DATA} ./files/php.ini $(IDIR_PHP_CLI)/etc/ + ${INSTALL_DIR} $(IDIR_PHP_CLI)/usr/bin + ${INSTALL_BIN} $(WRKBUILD)/sapi/cli/php $(IDIR_PHP_CLI)/usr/bin/php + ${INSTALL_DIR} $(IDIR_PHP_FASTCGI)/etc + ${INSTALL_DATA} ./files/php.ini $(IDIR_PHP_FASTCGI)/etc/ + ${INSTALL_DIR} $(IDIR_PHP_FASTCGI)/etc/init.d + ${INSTALL_BIN} ./files/php.init \ + $(IDIR_PHP_FASTCGI)/etc/init.d/php + ${INSTALL_DIR} $(IDIR_PHP_FASTCGI)/usr/sbin + ${INSTALL_BIN} $(WRKBUILD)/sapi/cgi/php-cgi $(IDIR_PHP_FASTCGI)/usr/sbin/php + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/php/files/php.ini b/package/php/files/php.ini new file mode 100644 index 000000000..ae16d0b61 --- /dev/null +++ b/package/php/files/php.ini @@ -0,0 +1,561 @@ +[PHP] + +cgi.fix_pathinfo=1 + +zend.ze1_compatibility_mode = Off + +;short_open_tag = Off +asp_tags = Off +precision = 12 +y2k_compliance = On +output_buffering = Off + +zlib.output_compression = Off +;zlib.output_handler = +implicit_flush = Off + +unserialize_callback_func= +serialize_precision = 100 + +allow_call_time_pass_reference = On + +safe_mode = Off + +safe_mode_gid = Off + +safe_mode_include_dir = + +safe_mode_exec_dir = + +safe_mode_allowed_env_vars = PHP_ + +safe_mode_protected_env_vars = LD_LIBRARY_PATH + +;open_basedir = + +disable_functions = + +disable_classes = + +; Colors for Syntax Highlighting mode. Anything that's acceptable in +; would work. +;highlight.string = #DD0000 +;highlight.comment = #FF9900 +;highlight.keyword = #007700 +;highlight.bg = #FFFFFF +;highlight.default = #0000BB +;highlight.html = #000000 + +expose_php = On + + +;;;;;;;;;;;;;;;;;;; +; Resource Limits ; +;;;;;;;;;;;;;;;;;;; + +max_execution_time = 30 ; Maximum execution time of each script, in seconds +max_input_time = 60 ; Maximum amount of time each script may spend parsing request data +memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) + + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Error handling and logging ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; error_reporting is a bit-field. Or each number up to get desired error +; reporting level +; E_ALL - All errors and warnings (doesn't include E_STRICT) +; E_ERROR - fatal run-time errors +; E_WARNING - run-time warnings (non-fatal errors) +; E_PARSE - compile-time parse errors +; E_NOTICE - run-time notices (these are warnings which often result +; from a bug in your code, but it's possible that it was +; intentional (e.g., using an uninitialized variable and +; relying on the fact it's automatically initialized to an +; empty string) +; E_STRICT - run-time notices, enable to have PHP suggest changes +; to your code which will ensure the best interoperability +; and forward compatibility of your code +; E_CORE_ERROR - fatal errors that occur during PHP's initial startup +; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's +; initial startup +; E_COMPILE_ERROR - fatal compile-time errors +; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) +; E_USER_ERROR - user-generated error message +; E_USER_WARNING - user-generated warning message +; E_USER_NOTICE - user-generated notice message +; +; Examples: +; +; - Show all errors, except for notices and coding standards warnings +; +;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT +; +; - Show all errors, except for notices +; +;error_reporting = E_ALL & ~E_NOTICE +; +; - Show only errors +; +;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR +; +; - Show all errors except for notices and coding standards warnings +; +error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT + +; Print out errors (as a part of the output). For production web sites, +; you're strongly encouraged to turn this feature off, and use error logging +; instead (see below). Keeping display_errors enabled on a production web site +; may reveal security information to end users, such as file paths on your Web +; server, your database schema or other information. +display_errors = On + +; Even when display_errors is on, errors that occur during PHP's startup +; sequence are not displayed. It's strongly recommended to keep +; display_startup_errors off, except for when debugging. +display_startup_errors = Off + +; Log errors into a log file (server-specific log, stderr, or error_log (below)) +; As stated above, you're strongly advised to use error logging in place of +; error displaying on production web sites. +log_errors = Off + +; Set maximum length of log_errors. In error_log information about the source is +; added. The default is 1024 and 0 allows to not apply any maximum length at all. +log_errors_max_len = 1024 + +; Do not log repeated messages. Repeated errors must occur in same file on same +; line until ignore_repeated_source is set true. +ignore_repeated_errors = Off + +; Ignore source of message when ignoring repeated messages. When this setting +; is On you will not log errors with repeated messages from different files or +; sourcelines. +ignore_repeated_source = Off + +; If this parameter is set to Off, then memory leaks will not be shown (on +; stdout or in the log). This has only effect in a debug compile, and if +; error reporting includes E_WARNING in the allowed list +report_memleaks = On + +; Store the last error/warning message in $php_errormsg (boolean). +track_errors = Off + +; Disable the inclusion of HTML tags in error messages. +; Note: Never use this feature for production boxes. +;html_errors = Off + +; If html_errors is set On PHP produces clickable error messages that direct +; to a page describing the error or function causing the error in detail. +; You can download a copy of the PHP manual from http://www.php.net/docs.php +; and change docref_root to the base URL of your local copy including the +; leading '/'. You must also specify the file extension being used including +; the dot. +; Note: Never use this feature for production boxes. +;docref_root = "/phpmanual/" +;docref_ext = .html + +; String to output before an error message. +;error_prepend_string = "" + +; String to output after an error message. +;error_append_string = "" + +; Log errors to specified file. +;error_log = filename + +; Log errors to syslog (Event Log on NT, not valid in Windows 95). +;error_log = syslog + + +;;;;;;;;;;;;;;;;; +; Data Handling ; +;;;;;;;;;;;;;;;;; +; +; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 + +; The separator used in PHP generated URLs to separate arguments. +; Default is "&". +;arg_separator.output = "&" + +; List of separator(s) used by PHP to parse input URLs into variables. +; Default is "&". +; NOTE: Every character in this directive is considered as separator! +;arg_separator.input = ";&" + +; This directive describes the order in which PHP registers GET, POST, Cookie, +; Environment and Built-in variables (G, P, C, E & S respectively, often +; referred to as EGPCS or GPC). Registration is done from left to right, newer +; values override older values. +variables_order = "EGPCS" + +; Whether or not to register the EGPCS variables as global variables. You may +; want to turn this off if you don't want to clutter your scripts' global scope +; with user data. This makes most sense when coupled with track_vars - in which +; case you can access all of the GPC variables through the $HTTP_*_VARS[], +; variables. +; +; You should do your best to write your scripts so that they do not require +; register_globals to be on; Using form variables as globals can easily lead +; to possible security problems, if the code is not very well thought of. +register_globals = Off + +; Whether or not to register the old-style input arrays, HTTP_GET_VARS +; and friends. If you're not using them, it's recommended to turn them off, +; for performance reasons. +register_long_arrays = On + +; This directive tells PHP whether to declare the argv&argc variables (that +; would contain the GET information). If you don't use these variables, you +; should turn it off for increased performance. +register_argc_argv = On + +; Maximum size of POST data that PHP will accept. +post_max_size = 8M + +; Magic quotes +; + +; Magic quotes for incoming GET/POST/Cookie data. +magic_quotes_gpc = On + +; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. +magic_quotes_runtime = Off + +; Use Sybase-style magic quotes (escape ' with '' instead of \'). +magic_quotes_sybase = Off + +; Automatically add files before or after any PHP document. +auto_prepend_file = +auto_append_file = + +; As of 4.0b4, PHP always outputs a character encoding by default in +; the Content-type: header. To disable sending of the charset, simply +; set it to be empty. +; +; PHP's built-in default is text/html +default_mimetype = "text/html" +;default_charset = "iso-8859-1" + +; Always populate the $HTTP_RAW_POST_DATA variable. +;always_populate_raw_post_data = On + + +;;;;;;;;;;;;;;;;;;;;;;;;; +; Paths and Directories ; +;;;;;;;;;;;;;;;;;;;;;;;;; + +; UNIX: "/path1:/path2" +;include_path = ".:/php/includes" +; +; Windows: "\path1;\path2" +;include_path = ".;c:\php\includes" + +; The root of the PHP pages, used only if nonempty. +; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root +; if you are running php as a CGI under any web server (other than IIS) +; see documentation for security issues. The alternate is to use the +; cgi.force_redirect configuration below +doc_root = /www + +; The directory under which PHP opens the script using /~username used only +; if nonempty. +user_dir = + +; Directory in which the loadable extensions (modules) reside. +extension_dir = "/usr/lib/php" + +; Whether or not to enable the dl() function. The dl() function does NOT work +; properly in multithreaded servers, such as IIS or Zeus, and is automatically +; disabled on them. +enable_dl = On + +; cgi.force_redirect is necessary to provide security running PHP as a CGI under +; most web servers. Left undefined, PHP turns this on by default. You can +; turn it off here AT YOUR OWN RISK +; **You CAN safely turn this off for IIS, in fact, you MUST.** +; cgi.force_redirect = 1 + +; if cgi.nph is enabled it will force cgi to always sent Status: 200 with +; every request. +; cgi.nph = 1 + +; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape +; (iPlanet) web servers, you MAY need to set an environment variable name that PHP +; will look for to know it is OK to continue execution. Setting this variable MAY +; cause security issues, KNOW WHAT YOU ARE DOING FIRST. +; cgi.redirect_status_env = ; + +; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate +; security tokens of the calling client. This allows IIS to define the +; security context that the request runs under. mod_fastcgi under Apache +; does not currently support this feature (03/17/2002) +; Set to 1 if running under IIS. Default is zero. +; fastcgi.impersonate = 1; + +; cgi.rfc2616_headers configuration option tells PHP what type of headers to +; use when sending HTTP response code. If it's set 0 PHP sends Status: header that +; is supported by Apache. When this option is set to 1 PHP will send +; RFC2616 compliant header. +; Default is zero. +;cgi.rfc2616_headers = 0 + + +;;;;;;;;;;;;;;;; +; File Uploads ; +;;;;;;;;;;;;;;;; + +; Whether to allow HTTP file uploads. +file_uploads = On + +; Temporary directory for HTTP uploaded files (will use system default if not +; specified). +upload_tmp_dir = /tmp + +; Maximum allowed size for uploaded files. +upload_max_filesize = 2M + + +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; + +; Whether to allow the treatment of URLs (like http:// or ftp://) as files. +allow_url_fopen = On + +; Define the anonymous ftp password (your email address) +;from="john@doe.com" + +; Define the User-Agent string +; user_agent="PHP" + +; Default timeout for socket based streams (seconds) +default_socket_timeout = 60 + +; If your scripts have to deal with files from Macintosh systems, +; or you are running on a Mac and need to deal with files from +; unix or win32 systems, setting this flag will cause PHP to +; automatically detect the EOL character in those files so that +; fgets() and file() will work regardless of the source of the file. +; auto_detect_line_endings = Off + + +;;;;;;;;;;;;;;;;;;;;;; +; Dynamic Extensions ; +;;;;;;;;;;;;;;;;;;;;;; +; +; If you wish to have an extension loaded automatically, use the following +; syntax: +; +; extension=modulename.extension +; +; For example, on Windows: +; +; extension=msql.dll +; +; ... or under UNIX: +; +; extension=msql.so +; +; Note that it should be the name of the module only; no directory information +; needs to go here. Specify the location of the extension with the +; extension_dir directive above. + + +;Windows Extensions +;Note that ODBC support is built in, so no dll is needed for it. +; + +;extension=ftp.so +;extension=gd.so +;extension=mysql.so +;extension=pcre.so +;extension=session.so +;extension=sockets.so +;extension=xml.so + + + + +;;;;;;;;;;;;;;;;;;; +; Module Settings ; +;;;;;;;;;;;;;;;;;;; + +[SQL] +sql.safe_mode = Off + +[Session] +; Handler used to store/retrieve data. +session.save_handler = files + +; Argument passed to save_handler. In the case of files, this is the path +; where data files are stored. Note: Windows users have to change this +; variable in order to use PHP's session functions. +; +; As of PHP 4.0.1, you can define the path as: +; +; session.save_path = "N;/path" +; +; where N is an integer. Instead of storing all the session files in +; /path, what this will do is use subdirectories N-levels deep, and +; store the session data in those directories. This is useful if you +; or your OS have problems with lots of files in one directory, and is +; a more efficient layout for servers that handle lots of sessions. +; +; NOTE 1: PHP will not create this directory structure automatically. +; You can use the script in the ext/session dir for that purpose. +; NOTE 2: See the section on garbage collection below if you choose to +; use subdirectories for session storage +; +; The file storage module creates files using mode 600 by default. +; You can change that by using +; +; session.save_path = "N;MODE;/path" +; +; where MODE is the octal representation of the mode. Note that this +; does not overwrite the process's umask. +session.save_path = "/tmp" + +; Whether to use cookies. +session.use_cookies = 1 + +; This option enables administrators to make their users invulnerable to +; attacks which involve passing session ids in URLs; defaults to 0. +; session.use_only_cookies = 1 + +; Name of the session (used as cookie name). +session.name = PHPSESSID + +; Initialize session on request startup. +session.auto_start = 0 + +; Lifetime in seconds of cookie or, if 0, until browser is restarted. +session.cookie_lifetime = 0 + +; The path for which the cookie is valid. +session.cookie_path = / + +; The domain for which the cookie is valid. +session.cookie_domain = + +; Handler used to serialize data. php is the standard serializer of PHP. +session.serialize_handler = php + +; Define the probability that the 'garbage collection' process is started +; on every session initialization. +; The probability is calculated by using gc_probability/gc_divisor, +; e.g. 1/100 means there is a 1% chance that the GC process starts +; on each request. + +session.gc_probability = 1 +session.gc_divisor = 100 + +; After this number of seconds, stored data will be seen as 'garbage' and +; cleaned up by the garbage collection process. +session.gc_maxlifetime = 1440 + +; NOTE: If you are using the subdirectory option for storing session files +; (see session.save_path above), then garbage collection does *not* +; happen automatically. You will need to do your own garbage +; collection through a shell script, cron entry, or some other method. +; For example, the following script would is the equivalent of +; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): +; cd /path/to/sessions; find -cmin +24 | xargs rm + +; PHP 4.2 and less have an undocumented feature/bug that allows you to +; to initialize a session variable in the global scope, albeit register_globals +; is disabled. PHP 4.3 and later will warn you, if this feature is used. +; You can disable the feature and the warning separately. At this time, +; the warning is only displayed, if bug_compat_42 is enabled. + +session.bug_compat_42 = 1 +session.bug_compat_warn = 1 + +; Check HTTP Referer to invalidate externally stored URLs containing ids. +; HTTP_REFERER has to contain this substring for the session to be +; considered as valid. +session.referer_check = + +; How many bytes to read from the file. +session.entropy_length = 0 + +; Specified here to create the session id. +session.entropy_file = + +;session.entropy_length = 16 + +;session.entropy_file = /dev/urandom + +; Set to {nocache,private,public,} to determine HTTP caching aspects +; or leave this empty to avoid sending anti-caching headers. +session.cache_limiter = nocache + +; Document expires after n minutes. +session.cache_expire = 180 + +; trans sid support is disabled by default. +; Use of trans sid may risk your users security. +; Use this option with caution. +; - User may send URL contains active session ID +; to other person via. email/irc/etc. +; - URL that contains active session ID may be stored +; in publically accessible computer. +; - User may access your site with the same session ID +; always using URL stored in browser's history or bookmarks. +session.use_trans_sid = 0 + +; Select a hash function +; 0: MD5 (128 bits) +; 1: SHA-1 (160 bits) +session.hash_function = 0 + +; Define how many bits are stored in each character when converting +; the binary hash data to something readable. +; +; 4 bits: 0-9, a-f +; 5 bits: 0-9, a-v +; 6 bits: 0-9, a-z, A-Z, "-", "," +session.hash_bits_per_character = 4 + +; The URL rewriter will look for URLs in a defined set of HTML tags. +; form/fieldset are special; if you include them here, the rewriter will +; add a hidden field with the info which is otherwise appended +; to URLs. If you want XHTML conformity, remove the form entry. +; Note that all valid entries require a "=", even if no value follows. +url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" + + +[Assertion] +; Assert(expr); active by default. +;assert.active = On + +; Issue a PHP warning for each failed assertion. +;assert.warning = On + +; Don't bail out by default. +;assert.bail = Off + +; User-function to be called if an assertion fails. +;assert.callback = 0 + +; Eval the expression with current error_reporting(). Set to true if you want +; error_reporting(0) around the eval(). +;assert.quiet_eval = 0 + + + + + +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +;exif.encode_unicode = ISO-8859-15 +;exif.decode_unicode_motorola = UCS-2BE +;exif.decode_unicode_intel = UCS-2LE +;exif.encode_jis = +;exif.decode_jis_motorola = JIS +;exif.decode_jis_intel = JIS + diff --git a/package/php/files/php.init b/package/php/files/php.init new file mode 100644 index 000000000..c48ae227d --- /dev/null +++ b/package/php/files/php.init @@ -0,0 +1,28 @@ +#!/bin/sh +#FWINIT 80 +. /etc/rc.conf + +export PHP_FCGI_CHILDREN='' + +case $1 in +autostop) ;; +autostart) + test x"${php:-NO}" = x"NO" && exit 0 + exec sh $0 start + ;; +start) + php ${php_flags} & + ;; +stop) + killall php + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? diff --git a/package/php/ipkg/php-cgi.conffiles b/package/php/ipkg/php-cgi.conffiles new file mode 100644 index 000000000..f1b6b5fc9 --- /dev/null +++ b/package/php/ipkg/php-cgi.conffiles @@ -0,0 +1 @@ +/etc/php.ini diff --git a/package/php/ipkg/php-cgi.control b/package/php/ipkg/php-cgi.control new file mode 100644 index 000000000..b80794a65 --- /dev/null +++ b/package/php/ipkg/php-cgi.control @@ -0,0 +1,6 @@ +Package: php-cgi +Priority: optional +Section: net +Provides: php +Depends: libopenssl, zlib +Description: PHP5 compiled as for CGI diff --git a/package/php/ipkg/php-cli.conffiles b/package/php/ipkg/php-cli.conffiles new file mode 100644 index 000000000..f1b6b5fc9 --- /dev/null +++ b/package/php/ipkg/php-cli.conffiles @@ -0,0 +1 @@ +/etc/php.ini diff --git a/package/php/ipkg/php-cli.control b/package/php/ipkg/php-cli.control new file mode 100644 index 000000000..6b0889836 --- /dev/null +++ b/package/php/ipkg/php-cli.control @@ -0,0 +1,6 @@ +Package: php-cli +Priority: optional +Section: net +Provides: php +Depends: libopenssl, zlib +Description: PHP5 CLI (Command Line Interface) diff --git a/package/php/ipkg/php-fastcgi.conffiles b/package/php/ipkg/php-fastcgi.conffiles new file mode 100644 index 000000000..f1b6b5fc9 --- /dev/null +++ b/package/php/ipkg/php-fastcgi.conffiles @@ -0,0 +1 @@ +/etc/php.ini diff --git a/package/php/ipkg/php-fastcgi.control b/package/php/ipkg/php-fastcgi.control new file mode 100644 index 000000000..9a95cedf0 --- /dev/null +++ b/package/php/ipkg/php-fastcgi.control @@ -0,0 +1,6 @@ +Package: php-fastcgi +Priority: optional +Section: net +Provides: php +Depends: libopenssl, zlib +Description: PHP5 compiled for FastCGI (for use with libhttpd-fastcgi) diff --git a/package/php/ipkg/php-fastcgi.postinst b/package/php/ipkg/php-fastcgi.postinst new file mode 100644 index 000000000..4497d75d1 --- /dev/null +++ b/package/php/ipkg/php-fastcgi.postinst @@ -0,0 +1,4 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +add_rcconf php php NO +add_rcconf php_flags php_flags "-b 1026" diff --git a/package/php/ipkg/php-mod-curl.control b/package/php/ipkg/php-mod-curl.control new file mode 100644 index 000000000..4ca5f42a2 --- /dev/null +++ b/package/php/ipkg/php-mod-curl.control @@ -0,0 +1,5 @@ +Package: php-mod-curl +Priority: optional +Section: net +Depends: php, libcurl +Description: cURL module for PHP5 diff --git a/package/php/ipkg/php-mod-ftp.control b/package/php/ipkg/php-mod-ftp.control new file mode 100644 index 000000000..a8dd0b3fd --- /dev/null +++ b/package/php/ipkg/php-mod-ftp.control @@ -0,0 +1,5 @@ +Package: php-mod-ftp +Priority: optional +Section: net +Depends: php +Description: FTP module for PHP5 diff --git a/package/php/ipkg/php-mod-gd.control b/package/php/ipkg/php-mod-gd.control new file mode 100644 index 000000000..2cf37cb03 --- /dev/null +++ b/package/php/ipkg/php-mod-gd.control @@ -0,0 +1,5 @@ +Package: php-mod-gd +Priority: optional +Section: net +Depends: php, libgd, libpng +Description: GD module for PHP5 diff --git a/package/php/ipkg/php-mod-gmp.control b/package/php/ipkg/php-mod-gmp.control new file mode 100644 index 000000000..aa54fbb89 --- /dev/null +++ b/package/php/ipkg/php-mod-gmp.control @@ -0,0 +1,5 @@ +Package: php-mod-gmp +Priority: optional +Section: net +Depends: php, libgmp +Description: GMP (GNU MP) module for PHP5 diff --git a/package/php/ipkg/php-mod-ldap.control b/package/php/ipkg/php-mod-ldap.control new file mode 100644 index 000000000..19f8431cf --- /dev/null +++ b/package/php/ipkg/php-mod-ldap.control @@ -0,0 +1,5 @@ +Package: php-mod-ldap +Priority: optional +Section: net +Depends: php, libopenldap +Description: LDAP module for PHP5 diff --git a/package/php/ipkg/php-mod-mysql.control b/package/php/ipkg/php-mod-mysql.control new file mode 100644 index 000000000..91803e7d5 --- /dev/null +++ b/package/php/ipkg/php-mod-mysql.control @@ -0,0 +1,5 @@ +Package: php-mod-mysql +Priority: optional +Section: net +Depends: php, libmysqlclient +Description: MySQL module for PHP5 diff --git a/package/php/ipkg/php-mod-openssl.control b/package/php/ipkg/php-mod-openssl.control new file mode 100644 index 000000000..eeb9283e6 --- /dev/null +++ b/package/php/ipkg/php-mod-openssl.control @@ -0,0 +1,5 @@ +Package: php-mod-openssl +Priority: optional +Section: net +Depends: php, libopenssl +Description: OpenSSL module for PHP5 diff --git a/package/php/ipkg/php-mod-pcre.control b/package/php/ipkg/php-mod-pcre.control new file mode 100644 index 000000000..5effe2f94 --- /dev/null +++ b/package/php/ipkg/php-mod-pcre.control @@ -0,0 +1,5 @@ +Package: php-mod-pcre +Priority: optional +Section: net +Depends: php, libpcre +Description: PCRE module for PHP5 diff --git a/package/php/ipkg/php-mod-pgsql.control b/package/php/ipkg/php-mod-pgsql.control new file mode 100644 index 000000000..c55da6966 --- /dev/null +++ b/package/php/ipkg/php-mod-pgsql.control @@ -0,0 +1,5 @@ +Package: php-mod-pgsql +Priority: optional +Section: net +Depends: php, libpq +Description: PostgreSQL module for PHP5 diff --git a/package/php/ipkg/php-mod-session.control b/package/php/ipkg/php-mod-session.control new file mode 100644 index 000000000..accbf97aa --- /dev/null +++ b/package/php/ipkg/php-mod-session.control @@ -0,0 +1,5 @@ +Package: php-mod-session +Priority: optional +Section: net +Depends: php +Description: Sessions module for PHP5 diff --git a/package/php/ipkg/php-mod-sockets.control b/package/php/ipkg/php-mod-sockets.control new file mode 100644 index 000000000..b93a85657 --- /dev/null +++ b/package/php/ipkg/php-mod-sockets.control @@ -0,0 +1,5 @@ +Package: php-mod-sockets +Priority: optional +Section: net +Depends: php +Description: Sockets module for PHP5 diff --git a/package/php/ipkg/php-mod-sqlite.control b/package/php/ipkg/php-mod-sqlite.control new file mode 100644 index 000000000..427e779f4 --- /dev/null +++ b/package/php/ipkg/php-mod-sqlite.control @@ -0,0 +1,5 @@ +Package: php-mod-sqlite +Priority: optional +Section: net +Depends: php, libsqlite +Description: SQLite module for PHP5 diff --git a/package/php/ipkg/php-mod-xml.control b/package/php/ipkg/php-mod-xml.control new file mode 100644 index 000000000..ff25d7dd9 --- /dev/null +++ b/package/php/ipkg/php-mod-xml.control @@ -0,0 +1,5 @@ +Package: php-mod-xml +Priority: optional +Section: net +Depends: php, libexpat +Description: XML module for PHP5 -- cgit v1.2.3