summaryrefslogtreecommitdiff
path: root/package/php/ipkg
diff options
context:
space:
mode:
Diffstat (limited to 'package/php/ipkg')
-rw-r--r--package/php/ipkg/php-cgi.conffiles1
-rw-r--r--package/php/ipkg/php-cgi.control6
-rw-r--r--package/php/ipkg/php-cli.conffiles1
-rw-r--r--package/php/ipkg/php-cli.control6
-rw-r--r--package/php/ipkg/php-fastcgi.conffiles1
-rw-r--r--package/php/ipkg/php-fastcgi.control6
-rw-r--r--package/php/ipkg/php-fastcgi.postinst4
-rw-r--r--package/php/ipkg/php-mod-curl.control5
-rw-r--r--package/php/ipkg/php-mod-ftp.control5
-rw-r--r--package/php/ipkg/php-mod-gd.control5
-rw-r--r--package/php/ipkg/php-mod-gmp.control5
-rw-r--r--package/php/ipkg/php-mod-ldap.control5
-rw-r--r--package/php/ipkg/php-mod-mysql.control5
-rw-r--r--package/php/ipkg/php-mod-openssl.control5
-rw-r--r--package/php/ipkg/php-mod-pcre.control5
-rw-r--r--package/php/ipkg/php-mod-pgsql.control5
-rw-r--r--package/php/ipkg/php-mod-session.control5
-rw-r--r--package/php/ipkg/php-mod-sockets.control5
-rw-r--r--package/php/ipkg/php-mod-sqlite.control5
-rw-r--r--package/php/ipkg/php-mod-xml.control5
20 files changed, 90 insertions, 0 deletions
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