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: roundcube-0.8.4.ebuild ChangeLog
Date: Wed, 21 Nov 2012 22:32:48
Message-Id: 20121121223238.5278B20C65@flycatcher.gentoo.org
1 radhermit 12/11/21 22:32:38
2
3 Modified: ChangeLog
4 Added: roundcube-0.8.4.ebuild
5 Log:
6 Version bump (bug #444169).
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.91 mail-client/roundcube/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.91&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.91&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?r1=1.90&r2=1.91
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v
20 retrieving revision 1.90
21 retrieving revision 1.91
22 diff -u -r1.90 -r1.91
23 --- ChangeLog 16 Oct 2012 16:37:50 -0000 1.90
24 +++ ChangeLog 21 Nov 2012 22:32:38 -0000 1.91
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.90 2012/10/16 16:37:50 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.91 2012/11/21 22:32:38 radhermit Exp $
30 +
31 +*roundcube-0.8.4 (21 Nov 2012)
32 +
33 + 21 Nov 2012; Tim Harder <radhermit@g.o> +roundcube-0.8.4.ebuild:
34 + Version bump (bug #444169).
35
36 *roundcube-0.8.2 (16 Oct 2012)
37
38
39
40
41 1.1 mail-client/roundcube/roundcube-0.8.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roundcube-0.8.4.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.4.ebuild,v 1.1 2012/11/21 22:32:38 radhermit Exp $
51
52 EAPI="5"
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 ~hppa ~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 }