www-apps/davical: remove ldap dep and useflag

remove ldap dependency, since it is a runtime dependency only.
remove obsolete comment about already removed PHP compatibility restriction

Closes: https://bugs.gentoo.org/773547
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Till Schäfer <till2.schaefer@uni-dortmund.de>
Closes: https://github.com/gentoo/gentoo/pull/19750
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Till Schäfer 2021-03-03 10:55:27 +01:00 committed by Joonas Niilola
parent c638628292
commit 358e140970
No known key found for this signature in database
GPG Key ID: 7383942B8DC06962
1 changed files with 6 additions and 4 deletions

View File

@ -3,7 +3,7 @@
EAPI=7
inherit webapp
inherit optfeature webapp
DESCRIPTION="A CalDAV and CardDAV Server"
HOMEPAGE="https://www.davical.org/"
@ -11,13 +11,11 @@ SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> ${P}.tar.x
LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2.1+ LGPL-3+"
KEYWORDS="~amd64 ~x86"
IUSE="ldap"
BDEPEND="sys-devel/gettext"
# >=dev-lang/php-8:curly braces string offset access was removed (Bug 764908)
RDEPEND="app-admin/pwgen
dev-lang/php[calendar,curl,iconv,imap,ldap?,nls,pdo,postgres,xml]
dev-lang/php[calendar,curl,iconv,imap,nls,pdo,postgres,xml]
dev-perl/DBD-Pg
dev-perl/DBI
dev-perl/YAML
@ -70,4 +68,8 @@ pkg_postinst() {
elog " ./update-davical-database -dbuser xxxxxxx -appuser xxxxxx"
webapp_pkg_postinst
elog ""
elog "Optional runtime dependencies:"
optfeature "LDAP authentication" dev-lang/php[ldap]
}