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