From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB2C1138334 for ; Sat, 19 Jan 2019 21:07:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E195AE0AB4; Sat, 19 Jan 2019 21:07:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B865AE0AB4 for ; Sat, 19 Jan 2019 21:07:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72DBF335D04 for ; Sat, 19 Jan 2019 21:07:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C72B24FC for ; Sat, 19 Jan 2019 21:07:29 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1547931978.cd61e5bb9a7561bec1725ad24a45279d1ac75f02.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nagios-core/nagios-core-4.4.3-r1.ebuild net-analyzer/nagios-core/nagios-core-4.4.3.ebuild X-VCS-Directories: net-analyzer/nagios-core/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: cd61e5bb9a7561bec1725ad24a45279d1ac75f02 X-VCS-Branch: master Date: Sat, 19 Jan 2019 21:07:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d25f45bb-27a3-43ae-a9cd-95030abfaa5f X-Archives-Hash: 16a675781563ce06cb8cb6d48ec7a546 commit: cd61e5bb9a7561bec1725ad24a45279d1ac75f02 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Jan 19 20:40:07 2019 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Jan 19 21:06:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd61e5bb net-analyzer/nagios-core: new revision to fix CGI install path. Upstream commit 37da6f39c8 fixes an old bug in the build system, where CGIDIR was set to @sbindir@ (rather than to @cgibindir@), and HTMLDIR was set to @datarootdir@ (rather than to @webdir@). Now that the bug is fixed, the ebuild has been revisioned to use the right configure flags: we pass --with-cgibindir the old argument of --sbindir, and --with-webdir the old argument of --datadir. Thanks to Tomáš Mózes for the report and the fix. Closes: https://bugs.gentoo.org/675872 Signed-off-by: Michael Orlitzky gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../{nagios-core-4.4.3.ebuild => nagios-core-4.4.3-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-analyzer/nagios-core/nagios-core-4.4.3.ebuild b/net-analyzer/nagios-core/nagios-core-4.4.3-r1.ebuild similarity index 97% rename from net-analyzer/nagios-core/nagios-core-4.4.3.ebuild rename to net-analyzer/nagios-core/nagios-core-4.4.3-r1.ebuild index d568d350d58..74ddb853c43 100644 --- a/net-analyzer/nagios-core/nagios-core-4.4.3.ebuild +++ b/net-analyzer/nagios-core/nagios-core-4.4.3-r1.ebuild @@ -96,11 +96,11 @@ src_configure() { econf ${myconf} \ --prefix=/usr \ --bindir=/usr/sbin \ - --sbindir=/usr/$(get_libdir)/nagios/cgi-bin \ - --datadir=/usr/share/nagios/htdocs \ --localstatedir=/var/nagios \ --sysconfdir=/etc/nagios \ - --libexecdir=/usr/$(get_libdir)/nagios/plugins + --libexecdir=/usr/$(get_libdir)/nagios/plugins \ + --with-cgibindir=/usr/$(get_libdir)/nagios/cgi-bin \ + --with-webdir=/usr/share/nagios/htdocs } src_compile() {