blob: 7cab5789eb812b54e4d3c5deacb2fe5df5b7a142 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="UI for Icinga DB"
HOMEPAGE="https://icinga.com/docs/icinga-db-web/"
SRC_URI="https://github.com/Icinga/icingadb-web/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm64"
RDEPEND="
|| (
dev-lang/php:8.1[curl,xml]
dev-lang/php:8.2[curl,xml]
dev-lang/php:8.3[curl,xml]
)
>=dev-libs/icinga-php-library-0.14.1
>=dev-libs/icinga-php-thirdparty-0.12
>=www-apps/icingaweb2-2.9.0
"
src_install() {
insinto "/usr/share/icingaweb2/modules/icingadb/"
doins -r "${S}"/*
}
|