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.5_beta.ebuild ChangeLog
Date: Sun, 28 Nov 2010 09:52:46
Message-Id: 20101128095235.5FFAD20057@flycatcher.gentoo.org
1 radhermit 10/11/28 09:52:35
2
3 Modified: ChangeLog
4 Added: roundcube-0.5_beta.ebuild
5 Log:
6 Version bump to new beta release. Drop unused depend.apache eclass.
7
8 (Portage version: 2.2.0_alpha5/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 mail-client/roundcube/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 21 Nov 2010 13:31:16 -0000 1.34
24 +++ ChangeLog 28 Nov 2010 09:52:35 -0000 1.35
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.34 2010/11/21 13:31:16 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/ChangeLog,v 1.35 2010/11/28 09:52:35 radhermit Exp $
30 +
31 +*roundcube-0.5_beta (28 Nov 2010)
32 +
33 + 28 Nov 2010; Tim Harder <radhermit@g.o> +roundcube-0.5_beta.ebuild:
34 + Version bump to new beta release. Drop unused depend.apache eclass.
35
36 21 Nov 2010; Markos Chandras <hwoarang@g.o> roundcube-0.4.2.ebuild:
37 Stable on amd64 wrt bug #345931
38
39
40
41 1.1 mail-client/roundcube/roundcube-0.5_beta.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.5_beta.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/roundcube/roundcube-0.5_beta.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roundcube-0.5_beta.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.5_beta.ebuild,v 1.1 2010/11/28 09:52:35 radhermit Exp $
51
52 EAPI="2"
53
54 MY_PN="${PN}mail"
55 MY_P="${MY_PN}-${PV/_/-}"
56
57 inherit webapp depend.php
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 }