diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2019-01-19 15:40:07 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2019-01-19 16:06:18 -0500 |
commit | cd61e5bb9a7561bec1725ad24a45279d1ac75f02 (patch) | |
tree | 09970b41a578ceab121d0bee9b84e6cc45fb22a7 /net-analyzer | |
parent | media-libs/mesa: Version bump to 18.3.2 (diff) | |
download | gentoo-cd61e5bb9a7561bec1725ad24a45279d1ac75f02.tar.gz gentoo-cd61e5bb9a7561bec1725ad24a45279d1ac75f02.tar.bz2 gentoo-cd61e5bb9a7561bec1725ad24a45279d1ac75f02.zip |
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 <mjo@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nagios-core/nagios-core-4.4.3-r1.ebuild (renamed from net-analyzer/nagios-core/nagios-core-4.4.3.ebuild) | 6 |
1 files 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 index d568d350d586..74ddb853c43e 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() { |