Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/roundcube: ChangeLog roundcube-0.8_rc.ebuild
Date: Tue, 29 May 2012 12:59:14
Message-Id: 20120529125858.635B22004B@flycatcher.gentoo.org
1 radhermit 12/05/29 12:58:58
2
3 Modified: ChangeLog
4 Added: roundcube-0.8_rc.ebuild
5 Log:
6 Version bump. Drop sqlite USE flag until sqlite3 is supported.
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.78 mail-client/roundcube/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.78&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.78&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?r1=1.77&r2=1.78
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v
20 retrieving revision 1.77
21 retrieving revision 1.78
22 diff -u -r1.77 -r1.78
23 --- ChangeLog 22 Apr 2012 14:49:51 -0000 1.77
24 +++ ChangeLog 29 May 2012 12:58:58 -0000 1.78
25 @@ -1,6 +1,11 @@
26 # ChangeLog for mail-client/roundcube
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.77 2012/04/22 14:49:51 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.78 2012/05/29 12:58:58 radhermit Exp $
30 +
31 +*roundcube-0.8_rc (29 May 2012)
32 +
33 + 29 May 2012; Tim Harder <radhermit@g.o> +roundcube-0.8_rc.ebuild:
34 + Version bump. Drop sqlite USE flag until sqlite3 is supported.
35
36 22 Apr 2012; Markus Meier <maekke@g.o> roundcube-0.7.2.ebuild:
37 x86 stable, bug #412029
38
39
40
41 1.1 mail-client/roundcube/roundcube-0.8_rc.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8_rc.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8_rc.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roundcube-0.8_rc.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.8_rc.ebuild,v 1.1 2012/05/29 12:58:58 radhermit Exp $
51
52 EAPI="4"
53
54 inherit webapp
55
56 MY_PN="${PN}mail"
57 MY_P="${MY_PN}-${PV/_/-}"
58 DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
59 HOMEPAGE="http://roundcube.net"
60 SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
61
62 # roundcube is GPL-licensed, the rest of the licenses here are
63 # for bundled PEAR components, googiespell and utf8.class.php
64 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
65 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="ldap +mysql postgres ssl spell"
67
68 RDEPEND="virtual/httpd-php
69 >=dev-lang/php-5.3[crypt,gd,iconv,json,ldap?,postgres?,session,sockets,ssl?,xml,unicode]
70 mysql? (
71 || ( dev-lang/php[mysql] dev-lang/php[mysqli] )
72 || ( dev-php/PEAR-MDB2_Driver_mysql dev-php/PEAR-MDB2_Driver_mysqli )
73 )
74 postgres? ( dev-php/PEAR-MDB2_Driver_pgsql )
75 spell? ( dev-lang/php[curl,spell] )
76 >=dev-php/PEAR-MDB2-2.5.0_beta3
77 >=dev-php/PEAR-Mail_Mime-1.8.1
78 >=dev-php/PEAR-Net_SMTP-1.4.2
79 >=dev-php/PEAR-Net_IDNA2-0.1.1
80 >=dev-php/PEAR-Auth_SASL-1.0.3"
81
82 need_httpd_cgi
83
84 S=${WORKDIR}/${MY_P}
85
86 src_prepare() {
87 cp config/db.inc.php{.dist,} || die
88 cp config/main.inc.php{.dist,} || die
89
90 # Remove bundled PEAR packages
91 rm -r program/lib/{Auth,Mail,MDB2*,Net,PEAR*} || die
92 }
93
94 src_install() {
95 webapp_src_preinst
96 dodoc CHANGELOG INSTALL README.md UPGRADING
97
98 insinto "${MY_HTDOCSDIR}"
99 doins -r [[:lower:]]* SQL
100 doins .htaccess
101
102 webapp_serverowned "${MY_HTDOCSDIR}"/logs
103 webapp_serverowned "${MY_HTDOCSDIR}"/temp
104
105 webapp_configfile "${MY_HTDOCSDIR}"/config/{db,main}.inc.php
106 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-0.6.txt
107 webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en-0.6.txt
108 webapp_postupgrade_txt en UPGRADING
109 webapp_src_install
110 }