diff options
author | Louis Sautier <sbraz@gentoo.org> | 2024-06-30 00:07:45 +0200 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2024-06-30 01:28:57 +0200 |
commit | dd25135c17e8b024b92c8b1913c659cd8dfcff14 (patch) | |
tree | c403545507ae0b8e1fd3abafdef2d3b29a90762d /www-apps | |
parent | www-apps/icingaweb2: remove unused multilib eclass (diff) | |
download | gentoo-dd25135c17e8b024b92c8b1913c659cd8dfcff14.tar.gz gentoo-dd25135c17e8b024b92c8b1913c659cd8dfcff14.tar.bz2 gentoo-dd25135c17e8b024b92c8b1913c659cd8dfcff14.zip |
www-apps/icingaweb2: EAPI=8, add support for PHP 8.3
2.12.1 supports PHP 8.3 as mentioned in
https://github.com/Icinga/icingaweb2/releases/tag/v2.12.1.
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/icingaweb2/icingaweb2-2.12.1-r1.ebuild | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/www-apps/icingaweb2/icingaweb2-2.12.1-r1.ebuild b/www-apps/icingaweb2/icingaweb2-2.12.1-r1.ebuild new file mode 100644 index 000000000000..c049797b957d --- /dev/null +++ b/www-apps/icingaweb2/icingaweb2-2.12.1-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit depend.apache + +DESCRIPTION="Icinga Web 2 - Frontend for icinga2" +HOMEPAGE="https://icinga.com/" + +if [[ ${PV} == *9999 ]];then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Icinga/icingaweb2.git" + EGIT_BRANCH="master" +else + SRC_URI="https://codeload.github.com/Icinga/${PN}/tar.gz/v${PV} -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="apache2 apache2-server fpm ldap mysql nginx pdf postgres" +REQUIRED_USE="( ^^ ( apache2-server nginx ) ) apache2? ( apache2-server )" + +DEPEND=">=net-analyzer/icinga2-2.1.1 + dev-php/pecl-imagick + pdf? ( media-gfx/imagemagick[png] ) + apache2-server? ( >=www-servers/apache-2.4.0 ) + nginx? ( >=www-servers/nginx-1.7.0:* ) + || ( + dev-lang/php:8.1[apache2?,cli,curl,fileinfo,fpm?,gd,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml] + dev-lang/php:8.2[apache2?,cli,curl,fileinfo,fpm?,gd,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml] + dev-lang/php:8.3[apache2?,cli,curl,fileinfo,fpm?,gd,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml] + ) + >=dev-libs/icinga-php-library-0.13.0 + >=dev-libs/icinga-php-thirdparty-0.12.0 + acct-group/icingacmd + acct-group/icingaweb2" +RDEPEND="${DEPEND}" + +want_apache2 + +pkg_setup() { + depend.apache_pkg_setup + + use nginx && usermod -a -G icingacmd,icingaweb2 nginx + use apache2 && usermod -a -G icingacmd,icingaweb2 apache +} + +pkg_config() { + if [[ -d /etc/icingaweb2 ]] ; then + einfo "Updating existing installation ..." + else + einfo "Running first time setup ..." + einfo "Creating configuration directory ..." + /usr/share/${PN}/bin/icingacli setup config directory + einfo "Creating authentication token for web setup ..." + /usr/share/${PN}/bin/icingacli setup token create + if use apache2 ; then + einfo "The following might be useful for your Apache2 configuration:" + /usr/share/${PN}/bin/icingacli setup config webserver apache --document-root /usr/share/${PN}/public + fi + if use nginx ; then + einfo "The following might be useful for your NGinx configuration:" + /usr/share/${PN}/bin/icingacli setup config webserver nginx --document-root /usr/share/${PN}/public + fi + fi + einfo "All done." +} + +src_install() { + insinto "/usr/share/${PN}" + doins -r "${S}"/* + fperms -R a+rX "/usr/share/${PN}/public/" + fperms u+x,g+x "/usr/share/${PN}/bin/icingacli" + fowners root:icingaweb2 "/usr/share/${PN}/bin/icingacli" +} + +pkg_postinst() { + einfo "Run 'emerge --config =${CATEGORY}/${PF}' to finish setup." +} |