diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2021-08-21 18:21:43 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2021-08-21 18:21:54 +0200 |
commit | a7fc17c1a1b9e2f9eab65afd707e82edbecf3c36 (patch) | |
tree | 511eeae3835175fb4fb46bbee3f53af930f7f249 /www-apps/element/element-1.8.1.ebuild | |
parent | net-ftp/filezilla: 3.55.1 bump (diff) | |
download | gentoo-a7fc17c1a1b9e2f9eab65afd707e82edbecf3c36.tar.gz gentoo-a7fc17c1a1b9e2f9eab65afd707e82edbecf3c36.tar.bz2 gentoo-a7fc17c1a1b9e2f9eab65afd707e82edbecf3c36.zip |
www-apps/element: 1.8.1 bump
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'www-apps/element/element-1.8.1.ebuild')
-rw-r--r-- | www-apps/element/element-1.8.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/www-apps/element/element-1.8.1.ebuild b/www-apps/element/element-1.8.1.ebuild new file mode 100644 index 000000000000..0d6f2e6d2cb4 --- /dev/null +++ b/www-apps/element/element-1.8.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit webapp + +DESCRIPTION="A glossy Matrix collaboration client for the web" +HOMEPAGE="https://element.io/" +SRC_URI="https://github.com/vector-im/element-web/releases/download/v${PV}/${PN}-v${PV}.tar.gz" + +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="${DEPEND}" +need_httpd + +S=${WORKDIR}/${PN}-v${PV} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + + dodir "${MY_HTDOCSDIR}"/home + dodir "${MY_HTDOCSDIR}"/sites + + webapp_serverowned "${MY_HTDOCSDIR}"/home + webapp_serverowned "${MY_HTDOCSDIR}"/sites + #webapp_configfile "${MY_HTDOCSDIR}"/config.json + + webapp_src_install +} |