Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 913584 - app-text/doxygen-1.9.7-r1 +doc installs SVG files in .bz2 form
Summary: app-text/doxygen-1.9.7-r1 +doc installs SVG files in .bz2 form
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Matthias Maier
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-09-03 18:03 UTC by Daniel Pouzzner
Modified: 2024-01-13 18:27 UTC (History)
0 users

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 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.