diff options
author | 2023-09-15 09:52:25 +0200 | |
---|---|---|
committer | 2023-09-15 09:52:25 +0200 | |
commit | c69a0af0cf446a84f0f7f4e40f766edb905c0412 (patch) | |
tree | d0ff169e86c6bed1e57b6c8d3fb3108673086848 /www-apps/icingadb-web/icingadb-web-1.0.2-r1.ebuild | |
parent | dev-lang/php: drop 7.4.33-r4, 7.4.33-r5, 7.4.33-r6 (diff) | |
download | gentoo-c69a0af0cf446a84f0f7f4e40f766edb905c0412.tar.gz gentoo-c69a0af0cf446a84f0f7f4e40f766edb905c0412.tar.bz2 gentoo-c69a0af0cf446a84f0f7f4e40f766edb905c0412.zip |
*/*: remove USE=php_targets_php7-4
Closes: https://github.com/gentoo/gentoo/pull/32762
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'www-apps/icingadb-web/icingadb-web-1.0.2-r1.ebuild')
-rw-r--r-- | www-apps/icingadb-web/icingadb-web-1.0.2-r1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/www-apps/icingadb-web/icingadb-web-1.0.2-r1.ebuild b/www-apps/icingadb-web/icingadb-web-1.0.2-r1.ebuild new file mode 100644 index 000000000000..7e199c809fb9 --- /dev/null +++ b/www-apps/icingadb-web/icingadb-web-1.0.2-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 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: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}"/* +} |