diff options
author | Fabian Groffen <grobian@gentoo.org> | 2020-12-24 09:46:50 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2020-12-24 09:50:09 +0100 |
commit | 73702578e1d25a3ada7598e85dc9aeb6da5b0163 (patch) | |
tree | 8673bd577b2ba48c568beeeccebceee941703186 /www-apps/baikal/baikal-0.7.2.ebuild | |
parent | www-client/qutebrowser: Add support python3.9 (diff) | |
download | gentoo-73702578e1d25a3ada7598e85dc9aeb6da5b0163.tar.gz gentoo-73702578e1d25a3ada7598e85dc9aeb6da5b0163.tar.bz2 gentoo-73702578e1d25a3ada7598e85dc9aeb6da5b0163.zip |
www-apps/baikal: version bump 0.7.2, address PHP8 json default
Closes: https://bugs.gentoo.org/758983
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'www-apps/baikal/baikal-0.7.2.ebuild')
-rw-r--r-- | www-apps/baikal/baikal-0.7.2.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/www-apps/baikal/baikal-0.7.2.ebuild b/www-apps/baikal/baikal-0.7.2.ebuild new file mode 100644 index 000000000000..39d0aca079d3 --- /dev/null +++ b/www-apps/baikal/baikal-0.7.2.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit webapp + +DESCRIPTION="Lightweight CalDAV+CardDAV server" +HOMEPAGE="https://sabre.io/baikal/" +SRC_URI="https://github.com/sabre-io/Baikal/releases/download/${PV}/${P}.zip" + +LICENSE="GPL-3" +KEYWORDS="~amd64 ~arm ~ppc64" +IUSE="+mysql sqlite" +REQUIRED_USE="|| ( mysql sqlite )" + +DEPEND="app-arch/unzip" +RDEPEND=">=dev-lang/php-6[ctype,filter,json(+),pdo,session,xml,xmlreader,xmlwriter,mysql?,sqlite?] + mysql? ( virtual/mysql ) + sqlite? ( dev-db/sqlite ) + virtual/httpd-php" + +S=${WORKDIR}/${PN} + +src_install() { + webapp_src_preinst + + dodoc *.md + + einfo "Installing web files" + insinto "${MY_HTDOCSDIR}" + doins -r html/* html/.htaccess Core vendor + + einfo "Setting up container for configuration" + dodir /etc/${PN} + + einfo "Fixing symlinks" + local link target + find "${D}${MY_HTDOCSDIR}" -type l | while read link ; do + target=$(readlink "${link}") + target=${target/..\/Core/Core} + rm "${link}" && ln -s "${target}" "${link}" + done + dosym /etc/${PN} "${MY_HTDOCSDIR}"/Specific + dosym /etc/${PN} "${MY_HTDOCSDIR}"/config + dosym . "${MY_HTDOCSDIR}"/html + + webapp_postinst_txt en "${FILESDIR}/postinstall-v0.7-en.txt" + webapp_src_install + + if has_version www-servers/apache ; then + fowners -R apache:apache /etc/${PN} + elif has_version www-servers/nginx ; then + fowners -R nginx:nginx /etc/${PN} + else + einfo "/etc/${PN} must be owned by the webserver user for baikal" + fi +} |