mail-client/roundcube: add 1.7_rc2

Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
Craig Andrews 2025-12-15 15:51:05 -05:00
parent 5db1859552
commit eaeaab2f0a
No known key found for this signature in database
GPG Key ID: 581BAFE062A38CB6
2 changed files with 97 additions and 0 deletions

View File

@ -4,3 +4,4 @@ DIST roundcubemail-1.6.12-complete.tar.gz 5840143 BLAKE2B 3e39f33ca7584e91d4c81d
DIST roundcubemail-1.6.7-complete.tar.gz 5899345 BLAKE2B c22803f3651c32f863081afe28d05e4b7918ba0cb1238c11de646a0fe3a16a6faff633a3a193a5813a50be710a71a8900d049f0e628661b6c7c036c0d69055ab SHA512 aedc940e769e881d448eced2ef0b603c87f9a9e18624cae4d14a946e6f9509c827f75e6fb294a760970e37caa9ab0bfb0a7ec8843b12542f59f350948d2d8d3b
DIST roundcubemail-1.7-beta2-complete.tar.gz 6183780 BLAKE2B fd4d5120ad3188cb75fe44ee3e3c4210d38170af7341bd0d385ba656a2ec33e26db167ec91ac986bf81b5a2eaafb77a4ac3557bf064b5f712deec84eee4ae82e SHA512 ed7ad6ab4002f41dc3cd5c04733a841e1193f3dfd5c902b30085ee2301fe661d3d6025a789388b565239ccaf3b80c12698082e693688c7aa8e8b4928e7e50bf3
DIST roundcubemail-1.7-rc-complete.tar.gz 6403507 BLAKE2B 789af08edf57a0f174b8ce611cdda1de73fc6f97fcc16d75fdbcdd9a9e221f3c0ed31808251fb191e467ecbdc71aab844767df404589f357633da1c2ee220922 SHA512 12669f9c42c0e064f5e7643468c35426ff7ef12da303b1e9a991339b9e5f6f1883c06b576a7974b930c4c7cf0326d0194517870fca0920c75ca8e8e73d51a6e7
DIST roundcubemail-1.7-rc2-complete.tar.gz 6404057 BLAKE2B 57357c9f501d4d71ecd96cff92d63a41ac8698258e94c2f171f18e92dfd6698b59d812c389e8db3e8e7e8ce27f1a32f216a6dd55f869f6cd4c92aa795dc2e485 SHA512 acfdba469aff10cbbb23d485ac5ff93ae68235bb08ea518235fdcdbe0fe5b7faf49a2ab0c00409aea5ed10b891eac288d7d46b9bae385afb308be2484fef8dba

View File

@ -0,0 +1,96 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit webapp
MY_PN=${PN}mail
MY_PV=${PV/_/-}
MY_P=${MY_PN}-${MY_PV}
DESCRIPTION="A browser-based multilingual IMAP client with an application-like user interface"
HOMEPAGE="https://roundcube.net"
# 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"
IUSE="change-password enigma exif fileinfo ldap mysql postgres sqlite ssl spell zip"
REQUIRED_USE="|| ( mysql postgres sqlite )"
# this function only sets DEPEND so we need to include that in RDEPEND
need_httpd_cgi
RDEPEND="
${DEPEND}
>=dev-lang/php-7.4.0[exif?,fileinfo?,filter,gd,iconv,intl,json(+),ldap?,pdo,postgres?,session,sqlite?,ssl?,unicode,xml,zip?]
virtual/httpd-php
change-password? (
dev-lang/php[sockets]
)
enigma? (
app-alternatives/gpg
)
mysql? (
|| (
dev-lang/php[mysql]
dev-lang/php[mysqli]
)
)
spell? ( dev-lang/php[curl,spell] )
"
if [[ ${PV} == *9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/roundcube/roundcubemail"
EGIT_BRANCH="master"
BDEPEND="${BDEPEND}
app-arch/unzip
dev-php/composer
net-misc/curl"
else
SRC_URI="https://github.com/${PN}/${MY_PN}/releases/download/${MY_PV}/${MY_P}-complete.tar.gz"
S="${WORKDIR}/${MY_P}"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
fi
src_unpack() {
if [[ "${PV}" == *9999* ]]; then
git-r3_src_unpack
pushd "${S}" > /dev/null || die
rm Makefile || die
mv composer.json-dist composer.json || die
composer install --no-dev || die
./bin/install-jsdeps.sh || die
popd > /dev/null || die
else
default
fi
}
src_install() {
webapp_src_preinst
dodoc CHANGELOG.md README.md
insinto "${MY_HTDOCSDIR}"
doins -r [[:lower:]]* SQL
webapp_serverowned "${MY_HTDOCSDIR}"/logs
webapp_serverowned "${MY_HTDOCSDIR}"/temp
webapp_configfile "${MY_HTDOCSDIR}"/config/defaults.inc.php
webapp_postupgrade_txt en "${FILESDIR}/POST-UPGRADE_complete.txt"
webapp_src_install
}
pkg_postinst() {
webapp_pkg_postinst
if [[ -n ${REPLACING_VERSIONS} ]]; then
elog "You can review the post-upgrade instructions at:"
elog "${EROOT}/usr/share/webapps/${PN}/${PV}/postupgrade-en.txt"
fi
}