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.5.ebuild
Date: Mon, 28 Jan 2013 07:08:53
Message-Id: 20130128070849.466032171D@flycatcher.gentoo.org
1 radhermit 13/01/28 07:08:49
2
3 Modified: ChangeLog
4 Added: roundcube-0.8.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.100 mail-client/roundcube/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.100&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.100&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?r1=1.99&r2=1.100
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v
20 retrieving revision 1.99
21 retrieving revision 1.100
22 diff -u -r1.99 -r1.100
23 --- ChangeLog 13 Jan 2013 07:15:38 -0000 1.99
24 +++ ChangeLog 28 Jan 2013 07:08:49 -0000 1.100
25 @@ -1,6 +1,11 @@
26 # ChangeLog for mail-client/roundcube
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.99 2013/01/13 07:15:38 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.100 2013/01/28 07:08:49 radhermit Exp $
30 +
31 +*roundcube-0.8.5 (28 Jan 2013)
32 +
33 + 28 Jan 2013; Tim Harder <radhermit@g.o> +roundcube-0.8.5.ebuild:
34 + Version bump.
35
36 *roundcube-0.9_beta (13 Jan 2013)
37
38
39
40
41 1.1 mail-client/roundcube/roundcube-0.8.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.8.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roundcube-0.8.5.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.5.ebuild,v 1.1 2013/01/28 07:08:49 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 }