commit:     48b03d794b6e7831804c3dc10049127f66451af6
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  8 16:53:41 2022 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Nov  8 16:57:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48b03d79

net-analyzer/icinga2: add 2.13.6

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 net-analyzer/icinga2/Manifest              |   1 +
 net-analyzer/icinga2/icinga2-2.13.6.ebuild | 145 +++++++++++++++++++++++++++++
 2 files changed, 146 insertions(+)

diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
index 4f001e6bf3aa..0cd306438c7e 100644
--- a/net-analyzer/icinga2/Manifest
+++ b/net-analyzer/icinga2/Manifest
@@ -1 +1,2 @@
 DIST icinga2-2.13.5.tar.gz 9663739 BLAKE2B 
9ce884cfd66eb6ab9a6977c8e751465bbec30605c0b62302850e2533ea5b3bfa003074807ad21a4338d37c41fac59454eb65edbca7ab7c4897ecd74a4d41ff1f
 SHA512 
7ac8970292795b8675a8fdc25ee0a68c6fe506d7413fe9c3c61e90ca159bdf01af43343de2217cbb4b5e446139c97e8b115b4dcd10b8ef68e884a07b80669f5d
+DIST icinga2-2.13.6.tar.gz 9666870 BLAKE2B 
50fd463ddb5d5d01ae96cb8457f2c4044c126c308f3d142bb6eb5ac95cf1f5704cd911236acd71ed7b77a596c07e65a96bbebce028bd666126324447d4f91aad
 SHA512 
5fcf480c305487c7988d6cacfcb64c768c0f0e749704247c3d0ded746284ff5485e0a3d25c82fba1305414d47067a9eb80f84de594267ddf050a0b913825cd71

diff --git a/net-analyzer/icinga2/icinga2-2.13.6.ebuild 
b/net-analyzer/icinga2/icinga2-2.13.6.ebuild
new file mode 100644
index 000000000000..2c5482fe5a8f
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.13.6.ebuild
@@ -0,0 +1,145 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake systemd
+
+if [[ ${PV} != 9999 ]]; then
+       SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~amd64 ~arm64 ~x86"
+else
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/Icinga/icinga2.git";
+fi
+
+DESCRIPTION="Distributed, general purpose, network monitoring engine"
+HOMEPAGE="https://icinga.com/";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="console jumbo-build lto mail mariadb minimal +mysql nano-syntax +plugins 
postgres systemd +vim-syntax"
+
+# Add accounts to DEPEND because of fowners in src_install
+DEPEND="
+       dev-libs/openssl:0=
+       dev-libs/boost:=[context]
+       console? ( dev-libs/libedit )
+       mariadb? ( dev-db/mariadb-connector-c:= )
+       mysql? ( dev-db/mysql-connector-c:= )
+       postgres? ( dev-db/postgresql:= )
+       dev-libs/yajl:=
+       acct-user/icinga
+       acct-group/icinga
+       acct-group/icingacmd"
+BDEPEND="
+       sys-devel/bison
+       >=sys-devel/flex-2.5.35"
+RDEPEND="
+       ${DEPEND}
+       plugins? ( || (
+               net-analyzer/monitoring-plugins
+               net-analyzer/nagios-plugins
+       ) )
+       mail? ( virtual/mailx )
+       acct-group/nagios"
+
+REQUIRED_USE="!minimal? ( || ( mariadb mysql postgres ) )"
+
+src_configure() {
+       local mycmakeargs=(
+               -DICINGA2_UNITY_BUILD=$(usex jumbo-build)
+               -DCMAKE_INSTALL_SYSCONFDIR=/etc
+               -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+               -DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
+               -DICINGA2_PLUGINDIR="/usr/$(get_libdir)/nagios/plugins"
+               -DICINGA2_USER=icinga
+               -DICINGA2_GROUP=icingacmd
+               -DICINGA2_COMMAND_GROUP=icingacmd
+               -DICINGA2_RUNDIR=/run
+               -DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=ON
+               -DUSE_SYSTEMD=$(usex systemd)
+               -DLOGROTATE_HAS_SU=ON
+               -DICINGA2_LTO_BUILD=$(usex lto)
+       )
+       # default to off if minimal, allow the flags to be set otherwise
+       if use minimal; then
+               mycmakeargs+=(
+                       -DICINGA2_WITH_MYSQL=OFF
+                       -DICINGA2_WITH_PGSQL=OFF
+               )
+       else
+               mycmakeargs+=(
+                       -DICINGA2_WITH_PGSQL=$(usex postgres)
+                       -DICINGA2_WITH_MYSQL=$(usex mysql yes $(usex mariadb))
+               )
+       fi
+
+       cmake_src_configure
+}
+
+src_install() {
+       cmake_src_install
+
+       newinitd "${FILESDIR}"/icinga2.initd-3 icinga2
+
+       if use mysql || use mariadb; then
+               docinto schema
+               newdoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_mysql/schema/mysql.sql mysql.sql
+               docinto schema/upgrade
+               dodoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_mysql/schema/upgrade/*
+       fi
+       if use postgres; then
+               docinto schema
+               newdoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_pgsql/schema/pgsql.sql pgsql.sql
+               docinto schema/upgrade
+               dodoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_pgsql/schema/upgrade/*
+       fi
+
+       keepdir /etc/icinga2
+       keepdir /var/lib/icinga2/api/zones
+       keepdir /var/lib/icinga2/api/repository
+       keepdir /var/lib/icinga2/api/log
+       keepdir /var/spool/icinga2/perfdata
+
+       rm -r "${D}/run" || die "failed to remove /run"
+       rm -r "${D}/var/cache" || die "failed to remove /var/cache"
+
+       fowners -R icinga:icinga /etc/icinga2
+       fperms 0750 /etc/icinga2
+       fowners icinga:icinga /var/lib/icinga2
+       fowners -R icinga:icingacmd /var/lib/icinga2/api
+       fowners -R icinga:icingacmd /var/lib/icinga2/certificate-requests
+       fowners -R icinga:icingacmd /var/lib/icinga2/certs
+       fowners icinga:icinga /var/spool/icinga2
+       fowners icinga:icinga /var/spool/icinga2/perfdata
+       fowners icinga:icingacmd /var/log/icinga2
+
+       fperms ug+rwX,o-rwx /etc/icinga2
+       fperms ug+rwX,o-rwx /var/lib/icinga2
+       fperms ug+rwX,o-rwx /var/spool/icinga2
+       fperms ug+rwX,o-rwx /var/log/icinga2
+
+       if use vim-syntax; then
+               insinto /usr/share/vim/vimfiles
+               doins -r "${WORKDIR}"/${P}/tools/syntax/vim/ftdetect
+               doins -r "${WORKDIR}"/${P}/tools/syntax/vim/syntax
+       fi
+
+       if use nano-syntax; then
+               insinto /usr/share/nano
+               doins "${WORKDIR}"/${P}/tools/syntax/nano/icinga2.nanorc
+       fi
+}
+
+pkg_postinst() {
+       if [[ "${PV}" != 9999 ]]; then
+               local v
+               for v in ${REPLACING_VERSIONS}; do
+                       if ver_test "${PV}" -gt "${v}"; then
+                               elog "DB IDO schema upgrade may be required."
+                               elog 
"https://www.icinga.com/docs/icinga2/latest/doc/16-upgrading-icinga-2/";
+                       fi
+               done
+       fi
+}

Reply via email to