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