1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/roundcube/roundcube-1.0.2.ebuild,v 1.8 2014/09/14 22:39:43 jer Exp $
EAPI=5
inherit webapp
MY_PN=${PN}mail
MY_P=${MY_PN}-${PV/_/-}
PHAR="1.0.0-alpha8"
DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
HOMEPAGE="http://roundcube.net"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz
https://getcomposer.org/download/${PHAR}/composer.phar"
# roundcube is GPL-licensed, the rest of the licenses here are
# for bundled PEAR components, googiespell and utf8.class.php
LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
KEYWORDS="amd64 arm ~hppa ppc ~ppc64 ~sparc x86"
IUSE="ldap +mysql plugins postgres sqlite ssl spell"
# The function below sets only DEPEND, so we need to include the latter in RDEPEND ...
need_httpd_cgi
RDEPEND="
${DEPEND}
>=dev-lang/php-5.3[crypt,filter,gd,iconv,json,ldap?,pdo,postgres?,session,sockets,ssl?,unicode,xml]
>=dev-php/PEAR-Auth_SASL-1.0.3
>=dev-php/PEAR-Crypt_GPG-1.3.2
>=dev-php/PEAR-Mail_Mime-1.8.1
>=dev-php/PEAR-Net_IDNA2-0.1.1
>=dev-php/PEAR-Net_SMTP-1.4.2
>=dev-php/PEAR-Net_Sieve-1.3.2
>=dev-php/PEAR-Net_Socket-1.0.14
mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )
plugins? ( >=dev-lang/php-5.3.4[ctype,filter,hash,json,phar,ssl] )
spell? ( dev-lang/php[curl,spell] )
sqlite? ( dev-lang/php[sqlite] )
virtual/httpd-php
"
S=${WORKDIR}/${MY_P}
src_prepare() {
cp config/config.inc.php{.sample,} || die
cp composer.json{-dist,} || die
# Remove bundled PEAR packages
rm -r program/lib/{Auth,Crypt,Mail,Net,PEAR*} || die
}
src_install() {
webapp_src_preinst
dodoc CHANGELOG INSTALL README.md UPGRADING
insinto "${MY_HTDOCSDIR}"
doins -r [[:lower:]]* SQL
doins .htaccess
use plugins && doins "${DISTDIR}"/composer.phar
webapp_serverowned "${MY_HTDOCSDIR}"/logs
webapp_serverowned "${MY_HTDOCSDIR}"/temp
webapp_configfile "${MY_HTDOCSDIR}"/config/config.inc.php
webapp_configfile "${MY_HTDOCSDIR}"/config/defaults.inc.php
webapp_configfile "${MY_HTDOCSDIR}"/composer.json
webapp_postupgrade_txt en UPGRADING
webapp_src_install
# fperms must occur after webapp_src_install is called...
#fperms 0755 "${MY_HTDOCSDIR}"/bin/*.sh || die "Cannot set file permissions in '${ED}/${MY_HTDOCSDIR}'"
local FILE filename
find "${ED}"/"${MY_HTDOCSDIR}"/bin/ -type f -name \*.sh | while read -r FILE; do
filename="$( basename "${FILE}" )"
fperms 0755 "${MY_HTDOCSDIR}"/bin/"${filename}" || die "Cannot set file permissions in '${ED}/${MY_HTDOCSDIR}/bin/'"
done
}
pkg_postinst() {
ewarn "When upgrading from <= 0.9, note that the old configuration files"
ewarn "named main.inc.php and db.inc.php are deprecated and should be"
ewarn "replaced with one single config.inc.php file."
ewarn "Run the ./bin/update.sh script to convert those"
ewarn "or manually merge the files."
ewarn "The new config.inc.php should only contain options that"
ewarn "differ from the ones listed in defaults.inc.php."
}
|