Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 913584

Summary: app-text/doxygen-1.9.7-r1 +doc installs SVG files in .bz2 form
Product: Gentoo Linux Reporter: Daniel Pouzzner <douzzer>
Component: Current packagesAssignee: Matthias Maier <tamiko>
Status: UNCONFIRMED ---    
Severity: normal    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Daniel Pouzzner 2023-09-03 18:03:32 UTC
Discovered the problem when I opened file:///usr/share/doc/doxygen-1.9.7/html/index.html in a browser.

Fixed the problem speculatively in that top index with

# bzip2 -dc /usr/share/doc/doxygen-1.9.7/html/doxygen_logo.svg.bz2 > /usr/share/doc/doxygen-1.9.7/html/doxygen_logo.svg

Then fixed it globally with

# find /usr/share/doc/doxygen-1.9.7/html/ -name \*.bz2 -print0 | xargs -0 bzip2 -d

It also seems dubious that the default doc artifacts are installed to /usr/share/doc/doxygen-1.9.7-r1/, but the +doc manuals (HTML and PDF) go to /usr/share/doc/doxygen-1.9.7/.
Comment 1 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-01-13 18:27:19 UTC
Yeah, these need to be docompress -x'd.