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.4.1.ebuild
Date: Wed, 29 Sep 2010 16:15:24
Message-Id: 20100929161519.A17FB20051@flycatcher.gentoo.org
1 radhermit 10/09/29 16:15:19
2
3 Modified: ChangeLog
4 Added: roundcube-0.4.1.ebuild
5 Log:
6 Version bump. Fixes issues relating to the disappearing upload box, buggy SQL scripts, and improves format=flowed support.
7
8 (Portage version: 2.2_rc87/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.26 mail-client/roundcube/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 28 Sep 2010 05:35:44 -0000 1.25
24 +++ ChangeLog 29 Sep 2010 16:15:19 -0000 1.26
25 @@ -1,6 +1,12 @@
26 # ChangeLog for mail-client/roundcube
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.25 2010/09/28 05:35:44 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.26 2010/09/29 16:15:19 radhermit Exp $
30 +
31 +*roundcube-0.4.1 (29 Sep 2010)
32 +
33 + 29 Sep 2010; Tim Harder <radhermit@g.o> +roundcube-0.4.1.ebuild:
34 + Version bump. Fixes issues relating to the disappearing upload box, buggy
35 + SQL scripts, and improves format=flowed support.
36
37 *roundcube-0.4 (28 Sep 2010)
38
39
40
41
42 1.1 mail-client/roundcube/roundcube-0.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: roundcube-0.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-0.4.1.ebuild,v 1.1 2010/09/29 16:15:19 radhermit Exp $
52
53 EAPI="2"
54
55 MY_PN="${PN}mail"
56 MY_P="${MY_PN}-${PV}"
57
58 inherit webapp depend.php depend.apache
59
60 DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
61 HOMEPAGE="http://roundcube.net"
62 SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
63
64 # roundcube is GPL-licensed, the rest of the licenses here are
65 # for bundled PEAR components, googiespell and utf8.class.php
66 LICENSE="GPL-2 BSD PHP-2.02 PHP-3 MIT public-domain"
67 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
68 IUSE="ldap mysql postgres ssl spell"
69
70 DEPEND=""
71 RDEPEND="|| ( <dev-lang/php-5.3[crypt,iconv,ldap?,pcre,postgres?,session,spl,ssl?,unicode]
72 >=dev-lang/php-5.3[crypt,iconv,ldap?,postgres?,session,ssl?,unicode] )
73 !postgres? ( !mysql? ( dev-lang/php[sqlite] ) )
74 spell? ( dev-lang/php[curl,spell] )
75 dev-php/PEAR-PEAR"
76
77 need_httpd_cgi
78 need_php_httpd
79
80 S=${WORKDIR}/${MY_P}
81
82 pkg_setup() {
83 use mysql && require_php_with_any_use mysql mysqli
84
85 # add some warnings about optional functionality
86 if ! PHPCHECKNODIE="yes" require_php_with_any_use gd gd-external; then
87 ewarn "IMAP quota display will not work correctly without GD support in PHP."
88 ewarn "Recompile PHP with either gd or gd-external in USE if you want this feature."
89 ewarn
90 fi
91
92 webapp_pkg_setup
93 }
94
95 src_prepare() {
96 cp config/db.inc.php{.dist,}
97 cp config/main.inc.php{.dist,}
98 }
99
100 src_install () {
101 webapp_src_preinst
102 dodoc CHANGELOG INSTALL README UPGRADING
103
104 insinto "${MY_HTDOCSDIR}"
105 doins -r [[:lower:]]* SQL
106 doins .htaccess
107
108 webapp_serverowned "${MY_HTDOCSDIR}"/logs
109 webapp_serverowned "${MY_HTDOCSDIR}"/temp
110
111 webapp_configfile "${MY_HTDOCSDIR}"/config/{db,main}.inc.php
112 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
113 webapp_postupgrade_txt en UPGRADING
114 webapp_src_install
115 }