commit:     999b0b5b23047dac16c616f05d747286edd51f06
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 12 15:27:56 2017 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Nov 12 15:27:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=999b0b5b

net-analyzer/icinga2: 2.7.2 bup

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 net-analyzer/icinga2/Manifest             |   1 +
 net-analyzer/icinga2/icinga2-2.7.2.ebuild | 182 ++++++++++++++++++++++++++++++
 2 files changed, 183 insertions(+)

diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
index c19fb18d6f1..090e7392568 100644
--- a/net-analyzer/icinga2/Manifest
+++ b/net-analyzer/icinga2/Manifest
@@ -1,2 +1,3 @@
 DIST icinga2-2.7.0.tar.gz 2435398 SHA256 
8f06d23e5d922ba7a74f92dbb9af792be063d06d3aea9011aba39370935c6980 SHA512 
470dd4ffa4ef608a018ede5c25b41f16213bf18c679eed8aaeed155fe6adc74a70abcc2e8be42ca20bf60f9b4b620c971ebbc96d608de2a90e480d72b93111bb
 WHIRLPOOL 
c926086c296affaafc7d55471ea5c1414b2d2cb8545657215a53bb9744c3147c32f8398317ad670e0d12fb95c83b54f0712f061e5e93bab868c4f04d833c3b47
 DIST icinga2-2.7.1.tar.gz 2475348 SHA256 
79f2cd2cba66b2d2a785d37cccd4a47611f7b0b7d52b9a625a22f0c7ff12f7f0 SHA512 
8233c33b7191706569a236d583fff689b35eba750fca01a06cfd14ef636b01314b6b142d78777987bd08a9df1cc53f42652fd1c900532b73f0a0363aa220c6cd
 WHIRLPOOL 
be07801033b8e10d3a4aaa26e9cd6b75663aed4cf513f8d592b05ea13e0626ab3021d5a52ebeedfa754752057a1d3378fd54c1f8fd1ec5dc72338c891d6b9785
+DIST icinga2-2.7.2.tar.gz 2471098 SHA256 
7e9691ad3389f04a53042d88c1ac8a37e2c9aaf8287856cad3fa48825adaee84 SHA512 
69cd7c56eaae832712723fcd21e2177b8180b3975bcf773223ca52d3817d1ca538cfd620002bd7a9ccf2e89deffa80d07e6281111146295b21377de99170302d
 WHIRLPOOL 
55e55189b9a1f6646cb94748a7b22731cd5f0d576a858737530187bbab83f40c8973f1a9f508449b0dcb997af443e75a15c9b2ef775c8fe95d1740c72db214c9

diff --git a/net-analyzer/icinga2/icinga2-2.7.2.ebuild 
b/net-analyzer/icinga2/icinga2-2.7.2.ebuild
new file mode 100644
index 00000000000..2f4dc84145d
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.7.2.ebuild
@@ -0,0 +1,182 @@
+# Copyright 1999-2017 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"
+       KEYWORDS="~ppc ~ppc64"
+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=(
+       "${FILESDIR}/fix-missing-include-2.7.1.patch"
+       "${FILESDIR}/fix-missing-include-2.7.1-2.patch"
+)
+
+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_USER=icinga
+               -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