Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 450950 - net-analyzer/sarg-2.3.3 installs man page with extra "man1" path component
Summary: net-analyzer/sarg-2.3.3 installs man page with extra "man1" path component
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: Normal normal (vote)
Assignee: Peter Volkov (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-08 21:44 UTC by Scott Bertilson
Modified: 2013-01-09 11:27 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Scott Bertilson 2013-01-08 21:44:11 UTC
src_prepare in the ebuild has a fix from buf 379395 which corrected an upstream bug which was not placing the man page into the proper sub-directory.
Upstream fixed this in 2.3.2 so now the fix is causing the man page to be installed in a "man1" sub-directory of /usr/share/man/man1.

Makefile.in from 2.3.1 followed by same from 2.3.2:
==> sarg-2.3.1/Makefile.in <==
# Makefile.in for sarg

prefix=@prefix@
datarootdir=@datarootdir@
datadir=@datadir@
exec_prefix=@exec_prefix@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
docdir      = @docdir@
CC          = @CC@
BINDIR      = @bindir@
MANDIR      = @mandir@
SYSCONFDIR  = @sysconfdir@

==> sarg-2.3.2/Makefile.in <==
# Makefile.in for sarg

prefix=@prefix@
datarootdir=@datarootdir@
datadir=@datadir@
exec_prefix=@exec_prefix@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
docdir      = @docdir@
CC          = @CC@
bindir      = @bindir@
mandir      = @mandir@
man1dir     = $(mandir)/man1
sysconfdir  = @sysconfdir@

Reproducible: Always

Steps to Reproduce:
1.install from ebuild version 2.3.2 or 2.3.3
2.
3.
Comment 1 Sergey Popov gentoo-dev 2013-01-09 11:27:32 UTC
+  09 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> sarg-2.3.3.ebuild:
+  Remove obsolete fix for man directory path, wrt bug #450950. Thanks to Scott
+  Bertilson for discovering this issue