commit:     5fb79d2d5b67316ce96a4e5acf37cc2ead098fe9
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 18:02:43 2018 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 18:04:29 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb79d2d

net-analyzer/icinga2: 2.8.1 bup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-analyzer/icinga2/Manifest             |   1 +
 net-analyzer/icinga2/icinga2-2.8.1.ebuild | 178 ++++++++++++++++++++++++++++++
 2 files changed, 179 insertions(+)

diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
index ce0f65b730f..f9713a68300 100644
--- a/net-analyzer/icinga2/Manifest
+++ b/net-analyzer/icinga2/Manifest
@@ -2,3 +2,4 @@ DIST icinga2-2.7.0.tar.gz 2435398 BLAKE2B 
06a717f818a7c51972d2d095ea1c588ff8d494
 DIST icinga2-2.7.1.tar.gz 2475348 BLAKE2B 
2e19a3c199b5cbcac78490a9ee1961c8e54f15787d08fa22150a977fb16aa7e736e76b97b66749ebd4070e9d0bfb0c8a484b8430288845de9ac456771d875682
 SHA512 
8233c33b7191706569a236d583fff689b35eba750fca01a06cfd14ef636b01314b6b142d78777987bd08a9df1cc53f42652fd1c900532b73f0a0363aa220c6cd
 DIST icinga2-2.7.2.tar.gz 2471098 BLAKE2B 
362897613616a15114577a044d56f01093246fa421c307faff1c6208a01e2c62dda2d1ff3aabc2e57b58c1cc6d4cb841a51758f0572945be2eced22390eb98ae
 SHA512 
69cd7c56eaae832712723fcd21e2177b8180b3975bcf773223ca52d3817d1ca538cfd620002bd7a9ccf2e89deffa80d07e6281111146295b21377de99170302d
 DIST icinga2-2.8.0.tar.gz 2497043 BLAKE2B 
06472b30ad1fa008796fb149ac067cf92062443d4c6ef62043b6e53b901e1c282c68d1949a3ac6eabc33456c3863bb5dfe45cd668b23ac22e705e3e346afbd59
 SHA512 
20399251c91aa3b07a0e884e0c52fa2540b645d24fd46cdb550fcc5accfbfa23a703f7d310ccde4fa68008c44e8dc6bcdc5351a21e82181e39b1add5a92d90c6
+DIST icinga2-2.8.1.tar.gz 2501182 BLAKE2B 
a32e60f8888d43eacedaee3cb33b719e2e405a6123710f7806b6c82eccb80eeb0ab0318a34302a5f3b310b258702214148f34719f166b3a3807ef2c9d4b28fa0
 SHA512 
27dcd2de1a9fa81327fa9cf25f25171e471715b4506dfd312bcd6c10408520cef86d260762f4340a00aaa7824c8ab65baadf541b7e104bd378204667dc92f762

diff --git a/net-analyzer/icinga2/icinga2-2.8.1.ebuild 
b/net-analyzer/icinga2/icinga2-2.8.1.ebuild
new file mode 100644
index 00000000000..81a25cd01f1
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.8.1.ebuild
@@ -0,0 +1,178 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+if [[ ${PV} != 9999 ]]; then
+       inherit cmake-utils depend.apache eutils systemd toolchain-funcs user 
wxwidgets
+       SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+else
+       inherit cmake-utils depend.apache eutils git-r3 systemd toolchain-funcs 
user wxwidgets
+       EGIT_REPO_URI="https://github.com/Icinga/icinga2.git";
+       EGIT_BRANCH="master"
+fi
+
+DESCRIPTION="Distributed, general purpose, network monitoring engine"
+HOMEPAGE="http://icinga.org/icinga2";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+mysql postgres classicui console libressl lto mail minimal nano-syntax 
+plugins studio +vim-syntax"
+WX_GTK_VER="3.0"
+
+CDEPEND="
+       !libressl? ( dev-libs/openssl:0= )
+       libressl? ( dev-libs/libressl:0= )
+       >=dev-libs/boost-1.58-r1
+       console? ( dev-libs/libedit )
+       mysql? ( virtual/mysql )
+       postgres? ( dev-db/postgresql:= )"
+
+DEPEND="
+       ${CDEPEND}
+       sys-devel/bison
+       >=sys-devel/flex-2.5.35"
+
+RDEPEND="
+       ${CDEPEND}
+       plugins? ( || (
+               net-analyzer/monitoring-plugins
+               net-analyzer/nagios-plugins
+       ) )
+       mail? ( virtual/mailx )
+       classicui? ( net-analyzer/icinga[web] )
+       studio? ( x11-libs/wxGTK:3.0 )"
+
+REQUIRED_USE="!minimal? ( || ( mysql postgres ) )"
+
+PATCHES=(
+)
+
+want_apache2
+
+pkg_setup() {
+       depend.apache_pkg_setup
+       if use studio ; then
+               setup-wxwidgets
+       fi
+       enewgroup icinga
+       enewgroup icingacmd
+       enewgroup nagios  # for plugins
+       enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
+}
+
+src_configure() {
+       sed -i 's/FLAGS\}\ \-g/FLAGS\}\ \-lpthread\ /g' CMakeLists.txt || die
+       local mycmakeargs=(
+               -DICINGA2_UNITY_BUILD=FALSE
+               -DCMAKE_VERBOSE_MAKEFILE=ON
+               -DCMAKE_BUILD_TYPE=None
+               -DCMAKE_INSTALL_PREFIX=/usr
+               -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
+               -DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=yes
+               -DLOGROTATE_HAS_SU=ON
+       )
+       # 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 ON OFF)
+                       -DICINGA2_WITH_MYSQL=$(usex mysql ON OFF)
+               )
+       fi
+       # LTO
+       if use lto; then
+               mycmakeargs+=(
+                       -DICINGA2_LTO_BUILD=ON
+               )
+       else
+               mycmakeargs+=(
+                       -DICINGA2_LTO_BUILD=OFF
+               )
+       fi
+       # STUDIO
+       if use studio; then
+               mycmakeargs+=(
+                       -DICINGA2_WITH_STUDIO=ON
+               )
+       else
+               mycmakeargs+=(
+                       -DICINGA2_WITH_STUDIO=OFF
+               )
+       fi
+
+       cmake-utils_src_configure
+}
+
+src_install() {
+       BUILDDIR="${WORKDIR}"/icinga2-${PV}_build
+       cd "${BUILDDIR}" || die
+
+       emake DESTDIR="${D}" install
+
+       einstalldocs
+
+       newinitd "${FILESDIR}"/icinga2.initd icinga2
+
+       if use mysql ; 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/*
+       elif 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}/var/run" || die "failed to remove /var/run"
+       rm -r "${D}/var/cache" || die "failed to remove /var/cache"
+
+       fowners root:icinga /etc/icinga2
+       fperms 0750 /etc/icinga2
+       fowners icinga:icinga /var/lib/icinga2
+       fowners icinga:icinga /var/spool/icinga2
+       fowners -R icinga:icingacmd /var/lib/icinga2/api
+       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 && -n ${REPLACING_VERSIONS} && 
${REPLACING_VERSIONS} != ${PV} ]]; then
+               elog "DB IDO schema upgrade may be required required.
+               
http://docs.icinga.org/icinga2/snapshot/doc/module/icinga2/chapter/upgrading-icinga-2";
+       fi
+}

Reply via email to