diff options
author | Bertrand Jacquin <beber@meleeweb.net> | 2008-08-09 18:31:36 +0200 |
---|---|---|
committer | Bertrand Jacquin <beber@meleeweb.net> | 2008-08-09 18:31:36 +0200 |
commit | 9bfd3d5885125555934e11004699d3d4739b0cbf (patch) | |
tree | 0bc3fc755869a576bac81e5aa7f0fbf553cd7d9c /www-apps | |
parent | New zenphoto release (diff) | |
download | portage-9bfd3d5885125555934e11004699d3d4739b0cbf.tar.xz |
New roundcube relase, and move it
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/roundcube/Manifest | 4 | ||||
-rw-r--r-- | www-apps/roundcube/files/postinstall-en.txt | 77 | ||||
-rw-r--r-- | www-apps/roundcube/files/roundcube-0.1-no-sockets-check.patch | 72 | ||||
-rw-r--r-- | www-apps/roundcube/roundcube-0.1.ebuild | 84 |
4 files changed, 0 insertions, 237 deletions
diff --git a/www-apps/roundcube/Manifest b/www-apps/roundcube/Manifest deleted file mode 100644 index 67aede90..00000000 --- a/www-apps/roundcube/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX postinstall-en.txt 2513 RMD160 c2a04efcdd4007642221797a10877c2fc57ad874 SHA1 8bc888b2944694bbbadeddfe6f193c3a8a995a87 SHA256 5c1fa9d43f29158521188aae417654f968fb41662c46721b8183728df37eb4c4 -AUX roundcube-0.1-no-sockets-check.patch 2435 RMD160 1d03b74d38693edc6f816f2e34422d2b46442751 SHA1 62a5d11dc2bb437543eb449e4e6f4014a95c3ccf SHA256 3075384ee99ce0b5f0077b6a56e2a140afb00af6e12d6e32863ec14d03cd8696 -DIST roundcubemail-0.1.tar.gz 1406854 RMD160 225b3a37c70bcf3b471b7d650233aec30dae2f76 SHA1 8b5b516b41bad98c3bbaf0da0e70b0db82580424 SHA256 ea4f4b23b9a20308cc0b1fef3b7301700c9ce4544189007bc62756e8d5f67051 -EBUILD roundcube-0.1.ebuild 2754 RMD160 a3a6a933b79881d6eb0fbc8e6c4c78e9e3e63a13 SHA1 f63a4ddea99fd306eef8af6f1e0881f1d5edc5ed SHA256 87a066609833ec391a3cd461e24bb1fb803389108c2c7e06e123f61ef31a6c31 diff --git a/www-apps/roundcube/files/postinstall-en.txt b/www-apps/roundcube/files/postinstall-en.txt deleted file mode 100644 index d3d8138b..00000000 --- a/www-apps/roundcube/files/postinstall-en.txt +++ /dev/null @@ -1,77 +0,0 @@ -0. DATABASE SETUP - - -* MySQL 4.1.x/5.x ------------------ -For MySQL version 4.1 and up, it's recommended to create the database for -RoundCube with utf-8 charset. Here's an example of the init procedure: - -# mysql -> CREATE DATABASE roundcubemail DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; -> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost - IDENTIFIED BY 'password'; -> quit - -# mysql roundcubemail < ${MY_INSTALLDIR}/SQL/mysql5.initial.sql - -* SQLite --------- -Sqlite requires specifically php5 (sqlite in php4 currently doesn't -work with roundcube), and you need sqlite 2 (preferably 2.8) to setup -the sqlite db (sqlite 3.x also doesn't work at the moment). Here is -an example how you can setup the sqlite.db for roundcube: - -# sqlite -init SQL/sqlite.initial.sql sqlite.db - -Make sure your configuration points to the sqlite.db file and that the -webserver can write to the file and the directory containing the file. - -* PostgreSQL ------------- -To use RoundCube with PostgreSQL support you have to follow these -simple steps, which have to be done as the postgres system user (or -which ever is the database superuser): - -$ createuser roundcube -$ createdb -O roundcube roundcubemail -$ psql roundcubemail - -roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password'; -roundcubemail =# \c - roundcube -roundcubemail => \i ${MY_INSTALLDIR}/SQL/postgres.initial.sql - -All this has been tested with PostgreSQL 8.x and 7.4.x. Older -versions don't have a -O option for the createdb, so if you are -using that version you'll have to change ownership of the DB later. - - -1. ROUNDCUBE CONFIGURATION - -Modify the files in ${MY_INSTALLDIR}/config/* to suit your local environment - -Details about the config parameters can be found in the config files. -See http://trac.roundcube.net/wiki/Howto_Install for even more guidance. - - -2. PHP CONFIGURATION - - - error_reporting E_ALL & ~E_NOTICE (or lower) - - file_uploads On (for attachment upload features) - - session.auto_start Off - - magic_quotes_gpc Off - - memory_limit (increase as suitable to support large attachments) - - -3. WEBSERVER CONFIGURATION - -Access through your webserver to at least the following directories should be denied: - - * /conf - * /temp - * /logs - -Roundcube uses .htaccess files to protect these directories if you are using Apache; -be sure to allow override of the Limit directives to get them taken into account. - -If you are NOT using Apache, it is your responsibility to take care of the above as -needed by your webserver. diff --git a/www-apps/roundcube/files/roundcube-0.1-no-sockets-check.patch b/www-apps/roundcube/files/roundcube-0.1-no-sockets-check.patch deleted file mode 100644 index 69bd5633..00000000 --- a/www-apps/roundcube/files/roundcube-0.1-no-sockets-check.patch +++ /dev/null @@ -1,72 +0,0 @@ -http://trac.roundcube.net/changeset/1186 -http://trac.roundcube.net/ticket/1484834 -Index: /trunk/roundcubemail/installer/check.php -=================================================================== ---- installer/check.php (revision 1169) -+++ installer/check.php (revision 1186) -@@ -2,5 +2,5 @@ - <?php - --$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', 'Sockets' => 'sockets'); -+$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session'); - - $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', -@@ -66,5 +66,5 @@ - ?> - --<p class="hint">These extensions are <em>optional</em> but recommended to get the best performance:</p> -+<p class="hint">The next couple of extensions are <em>optional</em> but recommended to get the best performance:</p> - <?php - -Index: /trunk/roundcubemail/installer/test.php -=================================================================== ---- installer/test.php (revision 1171) -+++ installer/test.php (revision 1186) -@@ -32,9 +32,36 @@ - ?> - -+<h3>Check if directories are writable</h3> -+<p>RoundCube may need to write/save files into these directories</p> -+<?php -+ -+if ($RCI->configured) { -+ $pass = false; -+ foreach (array($RCI->config['temp_dir'],$RCI->config['log_dir']) as $dir) { -+ $dirpath = $dir{0} == '/' ? $dir : $docroot . '/' . $dir; -+ if (is_writable(realpath($dirpath))) { -+ $RCI->pass($dir); -+ $pass = true; -+ } -+ else { -+ $RCI->fail($dir, 'not writeable for the webserver'); -+ } -+ echo '<br />'; -+ } -+ -+ if (!$pass) -+ echo '<p class="hint">Use <tt>chmod</tt> or <tt>chown</tt> to grant write privileges to the webserver</p>'; -+} -+else { -+ $RCI->fail('Config', 'Could not read config files'); -+} -+ -+?> -+ - <h3>Check configured database settings</h3> - <?php - - $db_working = false; --if (!empty($RCI->config)) { -+if ($RCI->configured) { - if (!empty($RCI->config['db_backend']) && !empty($RCI->config['db_dsnw'])) { - -Index: /trunk/roundcubemail/installer/welcome.html -=================================================================== ---- installer/welcome.html (revision 1162) -+++ installer/welcome.html (revision 1186) -@@ -11,5 +11,4 @@ - <li>PCRE (perl compatible regular expression)</li> - <li>Session support</li> -- <li>Sockets enabled</li> - <li>Libiconv (recommended)</li> - <li>OpenSSL (recommended)</li> diff --git a/www-apps/roundcube/roundcube-0.1.ebuild b/www-apps/roundcube/roundcube-0.1.ebuild deleted file mode 100644 index eed85f4c..00000000 --- a/www-apps/roundcube/roundcube-0.1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils webapp depend.php depend.apache - -MY_PN="${PN}mail" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="A browser-based multilingual IMAP client using AJAX" -HOMEPAGE="http://www.roundcube.net" -SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz" - -# roundcube is GPL-licensed, the rest of the licenses here are -# for bundled PEAR components, googiespell and utf8.class.php -LICENSE="GPL-2 BSD PHP-2.02 PHP-3 MIT public-domain" -KEYWORDS="~amd64 ~x86" -IUSE="ldap mysql postgres sqlite ssl spell" - -RDEPEND="dev-php/PEAR-PEAR" -need_httpd_cgi -need_php_httpd - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - local flags="crypt iconv imap pcre session unicode" - use ldap && flags="${flags} ldap" - use ssl && flags="${flags} ssl" - use spell && flags="${flags} curl ssl" - - # check for required PHP features - if ! use mysql && ! use postgres && ! use sqlite ; then - local dbflags="mysql mysqli postgres sqlite" - if ! PHPCHECKNODIE="yes" require_php_with_use ${flags} || \ - ! PHPCHECKNODIE="yes" require_php_with_any_use ${dbflags} ; then - die "Re-install ${PHP_PKG} with ${flags} and at least one of ${dbflags} in USE." - fi - else - for db in postgres sqlite ; do - use ${db} && flags="${flags} ${db}" - done - if ! PHPCHECKNODIE="yes" require_php_with_use ${flags} || \ - ( use mysql && ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ) ; then - local diemsg="Re-install ${PHP_PKG} with ${flags}" - use mysql && diemsg="${diemsg} and at least one of mysql mysqli" - die "${diemsg} in USE" - fi - fi - - # add some warnings about optional functionality - if ! PHPCHECKNODIE="yes" require_php_with_any_use gd gd-external ; then - ewarn "IMAP quota display will not work correctly without GD support in PHP." - ewarn "Recompile PHP with either gd or gd-external in USE if you want this feature." - ewarn - fi - use ldap || ewarn "PHP with USE=\"ldap\" is required for using LDAP addressbooks." - use ssl || ewarn "PHP with USE=\"ssl\" is required for IMAPS/STMPS functionality." - use spell || ewarn "PHP with USE=\"curl ssl\" required for spellchecker functionality." - - webapp_pkg_setup -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-no-sockets-check.patch - mv config/db.inc.php{.dist,} - mv config/main.inc.php{.dist,} -} - -src_install () { - webapp_src_preinst - dodoc CHANGELOG INSTALL README UPGRADING - - cp -R [[:lower:]]* SQL "${D}/${MY_HTDOCSDIR}" - - webapp_serverowned "${MY_HTDOCSDIR}"/logs - webapp_serverowned "${MY_HTDOCSDIR}"/temp - - webapp_configfile "${MY_HTDOCSDIR}"/config/{db,main}.inc.php - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_postupgrade_txt en UPGRADING - webapp_src_install -} |