2021-01-26 09:21:25 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2019-08-26 00:15:41 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2019-12-19 20:58:43 +03:00
|
|
|
EAPI=7
|
2019-08-26 00:15:41 +03:00
|
|
|
|
2019-12-19 20:58:43 +03:00
|
|
|
inherit webapp
|
2019-08-26 00:15:41 +03:00
|
|
|
|
|
|
|
DESCRIPTION="Personal cloud that runs on your own server"
|
2020-02-23 01:15:17 +03:00
|
|
|
HOMEPAGE="https://nextcloud.com/"
|
|
|
|
SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2"
|
2019-08-26 00:15:41 +03:00
|
|
|
LICENSE="AGPL-3"
|
|
|
|
|
2021-06-23 12:37:19 +03:00
|
|
|
KEYWORDS="amd64 ~arm ~arm64 x86"
|
2019-12-19 20:58:43 +03:00
|
|
|
IUSE="+curl +imagemagick mysql postgres +sqlite"
|
2019-08-26 00:15:41 +03:00
|
|
|
REQUIRED_USE="|| ( mysql postgres sqlite )"
|
|
|
|
|
|
|
|
DEPEND=""
|
2021-03-06 22:45:10 +03:00
|
|
|
RDEPEND="<dev-lang/php-8[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
|
2019-12-19 20:58:43 +03:00
|
|
|
imagemagick? ( dev-php/pecl-imagick )
|
2019-08-26 00:15:41 +03:00
|
|
|
virtual/httpd-php"
|
|
|
|
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
webapp_pkg_setup
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
webapp_src_preinst
|
|
|
|
|
|
|
|
insinto "${MY_HTDOCSDIR}"
|
|
|
|
doins -r .
|
|
|
|
dodir "${MY_HTDOCSDIR}"/data
|
|
|
|
|
|
|
|
webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
|
|
|
|
webapp_serverowned -R "${MY_HTDOCSDIR}"/data
|
|
|
|
webapp_serverowned -R "${MY_HTDOCSDIR}"/config
|
|
|
|
webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
|
|
|
|
|
2021-01-26 09:21:25 +03:00
|
|
|
webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt
|
|
|
|
|
2019-08-26 00:15:41 +03:00
|
|
|
webapp_src_install
|
|
|
|
}
|