diff options
author | Tomáš Mózes <hydrapolic@gmail.com> | 2022-11-03 19:45:13 +0000 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2022-11-04 00:32:00 -0500 |
commit | 3e213029aff92489c67dba78296e85fcddca5ab6 (patch) | |
tree | 220c3803ac6aa66e9318b0d4cf2e7cb03c114c16 /www-apps/icingadb-web | |
parent | net-misc/icingadb: Icinga configuration and state database (diff) | |
download | gentoo-3e213029aff92489c67dba78296e85fcddca5ab6.tar.gz gentoo-3e213029aff92489c67dba78296e85fcddca5ab6.tar.bz2 gentoo-3e213029aff92489c67dba78296e85fcddca5ab6.zip |
www-apps/icingadb-web: UI for Icinga DB
Closes: https://bugs.gentoo.org/879359
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'www-apps/icingadb-web')
-rw-r--r-- | www-apps/icingadb-web/Manifest | 1 | ||||
-rw-r--r-- | www-apps/icingadb-web/icingadb-web-1.0.1.ebuild | 29 | ||||
-rw-r--r-- | www-apps/icingadb-web/metadata.xml | 20 |
3 files changed, 50 insertions, 0 deletions
diff --git a/www-apps/icingadb-web/Manifest b/www-apps/icingadb-web/Manifest new file mode 100644 index 000000000000..bdf40b4e6413 --- /dev/null +++ b/www-apps/icingadb-web/Manifest @@ -0,0 +1 @@ +DIST icingadb-web-1.0.1.tar.gz 2296075 BLAKE2B 08684f8f46e85843035a98716094d7a0b2d623fdc633beaa9cc49778fd495d1edbf99f003bceed155a081bbe9ecc90393910f0c28a854fbe435b9fe73a5066c9 SHA512 64423f67961c4d0677d4fd5da18c28b6b525a38885e7660f48120a65a9638c9a1dd0f4a2c3b58048ab2583a76716c5e99cf88010c8b5dfd823083346228055f0 diff --git a/www-apps/icingadb-web/icingadb-web-1.0.1.ebuild b/www-apps/icingadb-web/icingadb-web-1.0.1.ebuild new file mode 100644 index 000000000000..56082291a598 --- /dev/null +++ b/www-apps/icingadb-web/icingadb-web-1.0.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 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/" +KEYWORDS="~amd64" +SRC_URI="https://github.com/Icinga/icingadb-web/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +RDEPEND=" + || ( + dev-lang/php:7.4[curl,xml] + dev-lang/php:8.0[curl,xml] + dev-lang/php:8.1[curl,xml] + dev-lang/php:8.2[curl,xml] + ) + >=dev-libs/icinga-php-library-0.9 + >=dev-libs/icinga-php-thirdparty-0.11 + >=www-apps/icingaweb2-2.9.0 +" + +src_install() { + insinto "/usr/share/icingaweb2/modules/icingadb/" + doins -r "${S}"/* +} diff --git a/www-apps/icingadb-web/metadata.xml b/www-apps/icingadb-web/metadata.xml new file mode 100644 index 000000000000..5cfeb4c7862c --- /dev/null +++ b/www-apps/icingadb-web/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>prometheanfire@gentoo.org</email> + <name>Matthew Thode</name> + </maintainer> + <maintainer type="person" proxied="yes"> + <email>hydrapolic@gmail.com</email> + <name>Tomáš Mózes</name> + </maintainer> + <maintainer type="project" proxied="proxy"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <upstream> + <remote-id type="github">Icinga/icingadb-web</remote-id> + <bugs-to>https://github.com/Icinga/icingadb-web/issues</bugs-to> + </upstream> +</pkgmetadata> |