Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/icinga2/
Date: Mon, 13 Feb 2017 15:51:49
Message-Id: 1487001086.902bc32fc09ff45d33073569b41212a08c885e44.prometheanfire@gentoo
1 commit: 902bc32fc09ff45d33073569b41212a08c885e44
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 13 15:50:54 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 13 15:51:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=902bc32f
7
8 net-analyzer/icinga2: bup
9
10 Package-Manager: portage-2.3.3
11
12 net-analyzer/icinga2/Manifest | 1 +
13 net-analyzer/icinga2/icinga2-2.6.2.ebuild | 177 ++++++++++++++++++++++++++++++
14 2 files changed, 178 insertions(+)
15
16 diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
17 index 7ebbd402b2..66c839af34 100644
18 --- a/net-analyzer/icinga2/Manifest
19 +++ b/net-analyzer/icinga2/Manifest
20 @@ -1,3 +1,4 @@
21 DIST icinga2-2.5.4.tar.gz 2493864 SHA256 f22ca17cd9951598ab6a1bc27c1ef82b9f1bb49795f69066ccd4d499faa240fc SHA512 0fca05d3eb6722cedecaba1da78ebb7268482257f28e37831f6356c618cbd059304a9e27e1f786799f253940e3dcf8ffa7399060f3e0e15765594796657b3be4 WHIRLPOOL a2a4af45a15cc4ed197151cc4e3355fa5f28ba227269990704f2cce47fe1990fb38932aa0bfefa8034492b379e04213d1eb514437e13aca3fe751592aff99afd
22 DIST icinga2-2.6.0.tar.gz 2353930 SHA256 b04627d7508dda4bb7b75b74501586d34b5d3d8752291c56682ba1137af03270 SHA512 70b44b3072b20799f5efd39c3e6692b9ae84f3d85886fe072ab67b34a5e4c53f5b6a7f9238d9fbdc663a6491c8c22dd79c71ddc06fa70bd95d2cb737896b3a91 WHIRLPOOL 32fcf3b442183527d3934a38fb1d0bfba7c2bb6336eb335b6810060c11e8c85184fe7d21d67b6aa29edf4c33f996adc7d949c87cb9fe5ab08c8606beec209480
23 DIST icinga2-2.6.1.tar.gz 2357267 SHA256 783d35c7fcd1b8fa7914633dc376dfad864ccd648b773bb5ef61bb2a1e86b425 SHA512 7882fb5d4360e00f97329052f41e98f55386312e835292b2e0f736b34db14c1d0290722d09a6bd4b29b16d2b54ce3d8f9974018559e73e42ead3e70f64d36af8 WHIRLPOOL 2976812686be60fade1f381dc16e93307d9690e95bd1dd1009a060d733d795b4de9fcccf565254bd461772d4fa72b9a83d2cc9cbc869f14d66fc6d5a74fd5a0a
24 +DIST icinga2-2.6.2.tar.gz 2357220 SHA256 c2058c0e6c39860c52a57b8ce79224729f34b48bc96fb7b1ae2b742909e9b71b SHA512 733370fb120b79bbe3bdbf3d4b640083ff26d2a872c545f4efcd23be3462435f75e0b43b269b770296cb6de4a0529f2369fb766e06444d3fdb56f04db6a3dd03 WHIRLPOOL 0d28a429e5068a490a85ebced3b102780327519968f0cdc7eb3d939d91b6199ee285e0ca524d8596681b2c82832d8fc1909974f5f7e2ecbf0b7fe2ffc908327d
25
26 diff --git a/net-analyzer/icinga2/icinga2-2.6.2.ebuild b/net-analyzer/icinga2/icinga2-2.6.2.ebuild
27 new file mode 100644
28 index 0000000000..b796077987
29 --- /dev/null
30 +++ b/net-analyzer/icinga2/icinga2-2.6.2.ebuild
31 @@ -0,0 +1,177 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +if [[ ${PV} != 9999 ]]; then
38 + inherit cmake-utils depend.apache eutils systemd toolchain-funcs user wxwidgets
39 + SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
41 +else
42 + inherit cmake-utils depend.apache eutils git-2 systemd toolchain-funcs user wxwidgets
43 + EGIT_REPO_URI="https://github.com/Icinga/icinga2.git"
44 + EGIT_BRANCH="master"
45 + KEYWORDS=""
46 +fi
47 +
48 +DESCRIPTION="Distributed, general purpose, network monitoring engine"
49 +HOMEPAGE="http://icinga.org/icinga2"
50 +
51 +LICENSE="GPL-2"
52 +SLOT="0"
53 +IUSE="+mysql postgres classicui console libressl lto mail minimal nano-syntax +plugins studio +vim-syntax"
54 +WX_GTK_VER="3.0"
55 +
56 +CDEPEND="
57 + !libressl? ( dev-libs/openssl:0= )
58 + libressl? ( dev-libs/libressl:0= )
59 + >=dev-libs/boost-1.58-r1
60 + console? ( dev-libs/libedit )
61 + mysql? ( virtual/mysql )
62 + postgres? ( dev-db/postgresql:= )"
63 +
64 +DEPEND="
65 + ${CDEPEND}
66 + sys-devel/bison
67 + >=sys-devel/flex-2.5.35"
68 +
69 +RDEPEND="
70 + ${CDEPEND}
71 + plugins? ( || (
72 + net-analyzer/monitoring-plugins
73 + net-analyzer/nagios-plugins
74 + ) )
75 + mail? ( virtual/mailx )
76 + classicui? ( net-analyzer/icinga[web] )
77 + studio? ( x11-libs/wxGTK:3.0 )"
78 +
79 +REQUIRED_USE="!minimal? ( || ( mysql postgres ) )"
80 +
81 +want_apache2
82 +
83 +pkg_setup() {
84 + depend.apache_pkg_setup
85 + if use studio ; then
86 + setup-wxwidgets
87 + fi
88 + enewgroup icinga
89 + enewgroup icingacmd
90 + enewgroup nagios # for plugins
91 + enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
92 +}
93 +
94 +src_configure() {
95 + sed -i 's/FLAGS\}\ \-g/FLAGS\}\ \-lpthread\ /g' CMakeLists.txt || die
96 + local mycmakeargs=(
97 + -DICINGA2_UNITY_BUILD=FALSE
98 + -DCMAKE_VERBOSE_MAKEFILE=ON
99 + -DCMAKE_BUILD_TYPE=None
100 + -DCMAKE_INSTALL_PREFIX=/usr
101 + -DCMAKE_INSTALL_SYSCONFDIR=/etc
102 + -DCMAKE_INSTALL_LOCALSTATEDIR=/var
103 + -DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
104 + -DICINGA2_USER=icinga
105 + -DICINGA2_GROUP=icingacmd
106 + -DICINGA2_COMMAND_USER=icinga
107 + -DICINGA2_COMMAND_GROUP=icingacmd
108 + -DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=yes
109 + -DLOGROTATE_HAS_SU=ON
110 + )
111 + # default to off if minimal, allow the flags to be set otherwise
112 + if use minimal; then
113 + mycmakeargs+=(
114 + -DICINGA2_WITH_MYSQL=OFF
115 + -DICINGA2_WITH_PGSQL=OFF
116 + )
117 + else
118 + mycmakeargs+=(
119 + -DICINGA2_WITH_PGSQL=$(usex postgres ON OFF)
120 + -DICINGA2_WITH_MYSQL=$(usex mysql ON OFF)
121 + )
122 + fi
123 + # LTO
124 + if use lto; then
125 + mycmakeargs+=(
126 + -DICINGA2_LTO_BUILD=ON
127 + )
128 + else
129 + mycmakeargs+=(
130 + -DICINGA2_LTO_BUILD=OFF
131 + )
132 + fi
133 + # STUDIO
134 + if use studio; then
135 + mycmakeargs+=(
136 + -DICINGA2_WITH_STUDIO=ON
137 + )
138 + else
139 + mycmakeargs+=(
140 + -DICINGA2_WITH_STUDIO=OFF
141 + )
142 + fi
143 +
144 + cmake-utils_src_configure
145 +}
146 +
147 +src_install() {
148 + BUILDDIR="${WORKDIR}"/icinga2-${PV}_build
149 + cd "${BUILDDIR}" || die
150 +
151 + emake DESTDIR="${D}" install
152 +
153 + einstalldocs
154 +
155 + newinitd "${FILESDIR}"/icinga2.initd icinga2
156 + newconfd "${FILESDIR}"/icinga2.confd icinga2
157 +
158 + if use mysql ; then
159 + docinto schema
160 + newdoc "${WORKDIR}"/icinga2-${PV}/lib/db_ido_mysql/schema/mysql.sql mysql.sql
161 + docinto schema/upgrade
162 + dodoc "${WORKDIR}"/icinga2-${PV}/lib/db_ido_mysql/schema/upgrade/*
163 + elif use postgres ; then
164 + docinto schema
165 + newdoc "${WORKDIR}"/icinga2-${PV}/lib/db_ido_pgsql/schema/pgsql.sql pgsql.sql
166 + docinto schema/upgrade
167 + dodoc "${WORKDIR}"/icinga2-${PV}/lib/db_ido_pgsql/schema/upgrade/*
168 + fi
169 +
170 + keepdir /etc/icinga2
171 + keepdir /var/lib/icinga2/api/zones
172 + keepdir /var/lib/icinga2/api/repository
173 + keepdir /var/lib/icinga2/api/log
174 + keepdir /var/spool/icinga2/perfdata
175 +
176 + rm -r "${D}/var/run" || die "failed to remove /var/run"
177 + rm -r "${D}/var/cache" || die "failed to remove /var/cache"
178 +
179 + fowners icinga:icinga /etc/icinga2
180 + fowners icinga:icinga /var/lib/icinga2
181 + fowners icinga:icinga /var/spool/icinga2
182 + fowners -R icinga:icingacmd /var/lib/icinga2/api
183 + fowners icinga:icinga /var/spool/icinga2/perfdata
184 + fowners icinga:icingacmd /var/log/icinga2
185 +
186 + fperms ug+rwX,o-rwx /etc/icinga2
187 + fperms ug+rwX,o-rwx /var/lib/icinga2
188 + fperms ug+rwX,o-rwx /var/spool/icinga2
189 + fperms ug+rwX,o-rwx /var/log/icinga2
190 +
191 + if use vim-syntax; then
192 + insinto /usr/share/vim/vimfiles
193 + doins -r "${WORKDIR}"/${P}/tools/syntax/vim/ftdetect
194 + doins -r "${WORKDIR}"/${P}/tools/syntax/vim/syntax
195 + fi
196 +
197 + if use nano-syntax; then
198 + insinto /usr/share/nano
199 + doins "${WORKDIR}"/${P}/tools/syntax/nano/icinga2.nanorc
200 + fi
201 +}
202 +
203 +pkg_postinst() {
204 + if [[ ${PV} != 9999 && -n ${REPLACING_VERSIONS} && ${REPLACING_VERSIONS} != ${PV} ]]; then
205 + elog "DB IDO schema upgrade may be required required.
206 + http://docs.icinga.org/icinga2/snapshot/doc/module/icinga2/chapter/upgrading-icinga-2"
207 + fi
208 +}