summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-03-06 11:17:34 +0000
committerTim Harder <radhermit@gentoo.org>2012-03-06 11:17:34 +0000
commit47e0165fc1ff293387440deb09badb3593eaad30 (patch)
tree2962ffb8b1af4b8903253d110f4fa48301061cb7 /mail-client/roundcube
parentVersion Bump (diff)
downloadgentoo-2-47e0165fc1ff293387440deb09badb3593eaad30.tar.gz
gentoo-2-47e0165fc1ff293387440deb09badb3593eaad30.tar.bz2
gentoo-2-47e0165fc1ff293387440deb09badb3593eaad30.zip
Remove old.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'mail-client/roundcube')
-rw-r--r--mail-client/roundcube/ChangeLog6
-rw-r--r--mail-client/roundcube/files/postinstall-en.txt77
-rw-r--r--mail-client/roundcube/roundcube-0.5.4.ebuild65
-rw-r--r--mail-client/roundcube/roundcube-0.7.ebuild82
4 files changed, 5 insertions, 225 deletions
diff --git a/mail-client/roundcube/ChangeLog b/mail-client/roundcube/ChangeLog
index 5a855a716e84..00fec8150641 100644
--- a/mail-client/roundcube/ChangeLog
+++ b/mail-client/roundcube/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for mail-client/roundcube
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.69 2012/03/03 15:20:34 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.70 2012/03/06 11:17:34 radhermit Exp $
+
+ 06 Mar 2012; Tim Harder <radhermit@gentoo.org> -roundcube-0.5.4.ebuild,
+ -roundcube-0.7.ebuild, -files/postinstall-en.txt:
+ Remove old.
03 Mar 2012; Markus Meier <maekke@gentoo.org> roundcube-0.7.1.ebuild:
arm stable, bug #403711
diff --git a/mail-client/roundcube/files/postinstall-en.txt b/mail-client/roundcube/files/postinstall-en.txt
deleted file mode 100644
index d3d8138b62f8..000000000000
--- a/mail-client/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/mail-client/roundcube/roundcube-0.5.4.ebuild b/mail-client/roundcube/roundcube-0.5.4.ebuild
deleted file mode 100644
index 54733e8fa0a0..000000000000
--- a/mail-client/roundcube/roundcube-0.5.4.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.5.4.ebuild,v 1.5 2011/08/24 18:39:03 maekke Exp $
-
-EAPI="2"
-
-inherit webapp depend.php
-
-MY_PN="${PN}mail"
-MY_P="${MY_PN}-${PV/_/-}"
-DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
-HOMEPAGE="http://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 arm ppc ppc64 ~sparc x86"
-IUSE="ldap mysql postgres ssl spell +sqlite"
-
-DEPEND=""
-RDEPEND="|| ( <dev-lang/php-5.3[crypt,iconv,json,ldap?,pcre,postgres?,session,spl,sqlite?,ssl?,unicode]
- >=dev-lang/php-5.3[crypt,iconv,json,ldap?,postgres?,session,sqlite?,ssl?,unicode] )
- spell? ( dev-lang/php[curl,spell] )
- dev-php/PEAR-PEAR"
-
-need_httpd_cgi
-need_php_httpd
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- webapp_pkg_setup
-
- use mysql && require_php_with_any_use mysql mysqli
-
- # 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
-}
-
-src_prepare() {
- cp config/db.inc.php{.dist,}
- cp config/main.inc.php{.dist,}
-}
-
-src_install() {
- webapp_src_preinst
- dodoc CHANGELOG INSTALL README UPGRADING
-
- insinto "${MY_HTDOCSDIR}"
- doins -r [[:lower:]]* SQL
- doins .htaccess
-
- 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
-}
diff --git a/mail-client/roundcube/roundcube-0.7.ebuild b/mail-client/roundcube/roundcube-0.7.ebuild
deleted file mode 100644
index 62cb0876f7ae..000000000000
--- a/mail-client/roundcube/roundcube-0.7.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.7.ebuild,v 1.2 2012/02/05 18:18:35 armin76 Exp $
-
-EAPI="4"
-
-inherit webapp depend.php
-
-MY_PN="${PN}mail"
-MY_P="${MY_PN}-${PV/_/-}"
-DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
-HOMEPAGE="http://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 ~arm ~ppc ~ppc64 ~sparc ~x86"
-IUSE="ldap mysql postgres ssl spell +sqlite"
-
-RDEPEND=">=dev-lang/php-5.3[crypt,iconv,json,ldap?,postgres?,session,sqlite?,sockets,ssl?,xml,unicode]
- mysql? (
- || ( dev-lang/php[mysql] dev-lang/php[mysqli] )
- || ( dev-php/PEAR-MDB2_Driver_mysql dev-php/PEAR-MDB2_Driver_mysqli )
- )
- postgres? ( dev-php/PEAR-MDB2_Driver_pgsql )
- spell? ( dev-lang/php[curl,spell] )
- sqlite? ( dev-php/PEAR-MDB2_Driver_sqlite )
- >=dev-php/PEAR-MDB2-2.5.0_beta3
- >=dev-php/PEAR-Mail_Mime-1.8.1
- >=dev-php/PEAR-Net_SMTP-1.4.2
- >=dev-php/PEAR-Net_IDNA2-0.1.1
- >=dev-php/PEAR-Auth_SASL-1.0.3"
-
-need_httpd_cgi
-need_php_httpd
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- webapp_pkg_setup
-
- # 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
-}
-
-src_prepare() {
- cp config/db.inc.php{.dist,} || die
- cp config/main.inc.php{.dist,} || die
-
- # Remove bundled PEAR packages
- rm -r program/lib/{Auth,Mail,MDB2*,Net,PEAR*} || die
-}
-
-src_install() {
- webapp_src_preinst
- dodoc CHANGELOG INSTALL README UPGRADING
-
- insinto "${MY_HTDOCSDIR}"
- doins -r [[:lower:]]* SQL
- doins .htaccess
-
- 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-0.6.txt
- webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en-0.6.txt
- webapp_postupgrade_txt en UPGRADING
- webapp_src_install
-}
-
-pkg_postinst() {
- webapp_pkg_postinst
- ewarn "When upgrading from version older than 0.6-beta you should make sure your"
- ewarn "folder settings contain namespace prefix. For example Courier users should"
- ewarn "add INBOX. prefix to folder names in main configuration file."
-}