mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-analyzer/icinga2: drop 2.14.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST icinga2-2.14.3.tar.gz 9397891 BLAKE2B 8808154d585a422d674c6384691f029fa2fe84615dc388648d948410c63c6ea30c96ba900b96f9af954654f0a65575d1875b472985733d8153bc6fc5e5ee00d5 SHA512 7285b32d353d0e68e9925a937feb922f4404557a7a72a03eb16991db207e5f8988cdbd7ca6f3871494be9e5027c70f8062c29fba88b8f0424c2548ca1b2805d6
|
||||
DIST icinga2-2.14.5.tar.gz 9413390 BLAKE2B 7e7e9c806d7d41f9e7627d3670709f3ec5594e1703548dc84b61140e60fc2d0a9c5801d6e25b7f4da228c8e1ca3d82a0364a29dd06c6b4e192a7d07adeb150f6 SHA512 841076e4207aa4c57d46ebff54e17b082490720b3aa194374448f2e1d06e9edb6823e59791bef769f38a14f463f216391666ecb21ccd5b6ca6f96f5b67030d2d
|
||||
|
||||
@@ -1,141 +0,0 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake eapi9-ver 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 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="
|
||||
app-alternatives/yacc
|
||||
app-alternatives/lex"
|
||||
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
|
||||
# only appends -flto
|
||||
-DICINGA2_LTO_BUILD=OFF
|
||||
)
|
||||
# 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 ]] && ver_replacing -lt "${PV}"; then
|
||||
elog "DB IDO schema upgrade may be required."
|
||||
elog "https://www.icinga.com/docs/icinga2/latest/doc/16-upgrading-icinga-2/"
|
||||
fi
|
||||
}
|
||||
@@ -10,7 +10,6 @@
|
||||
<flag name="jumbo-build">Combine source files to speed up build process, requires more memory</flag>
|
||||
<flag name="mail">Allows for mailing of alerts</flag>
|
||||
<flag name="mariadb">Enable support for the mariadb database backend</flag>
|
||||
<flag name="nano-syntax">Adds support for syntax used in the nano editor</flag>
|
||||
<flag name="plugins">Adds support for nagios plugins</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
|
||||
Reference in New Issue
Block a user