diff options
author | Sam James <sam@gentoo.org> | 2024-01-23 05:54:52 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-23 05:58:14 +0000 |
commit | fd7aa5622003aa9f300fb6b68afcb46ad5f02d00 (patch) | |
tree | a3491bfa563ff5be275dc00dfe704efeaf8ff97b /dev-build | |
parent | toolchain.eclass: compress slotted man pages & info pages (diff) | |
download | gentoo-fd7aa5622003aa9f300fb6b68afcb46ad5f02d00.tar.gz gentoo-fd7aa5622003aa9f300fb6b68afcb46ad5f02d00.tar.bz2 gentoo-fd7aa5622003aa9f300fb6b68afcb46ad5f02d00.zip |
dev-build/automake: compress slotted info pages
As noted in the bug, we install to a different location to accommodate slotting
and hence do not benefit from the automagic compression for /usr/share/doc.
Explicitly opt-in for the info pages we install.
Bug: https://bugs.gentoo.org/922729
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-build')
-rw-r--r-- | dev-build/automake/automake-1.11.6-r4.ebuild | 2 | ||||
-rw-r--r-- | dev-build/automake/automake-1.16.5-r1.ebuild | 2 | ||||
-rw-r--r-- | dev-build/automake/automake-9999.ebuild | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/dev-build/automake/automake-1.11.6-r4.ebuild b/dev-build/automake/automake-1.11.6-r4.ebuild index 63adb6b1358a..ce79acae9463 100644 --- a/dev-build/automake/automake-1.11.6-r4.ebuild +++ b/dev-build/automake/automake-1.11.6-r4.ebuild @@ -88,4 +88,6 @@ src_install() { newenvd - "06automake${idx}" <<-EOF INFOPATH="${MY_INFODIR}" EOF + + docompress "${MY_INFODIR}" } diff --git a/dev-build/automake/automake-1.16.5-r1.ebuild b/dev-build/automake/automake-1.16.5-r1.ebuild index 07d5a58bdec0..0cde725c8964 100644 --- a/dev-build/automake/automake-1.16.5-r1.ebuild +++ b/dev-build/automake/automake-1.16.5-r1.ebuild @@ -128,4 +128,6 @@ src_install() { newenvd - "06automake${idx}" <<-EOF INFOPATH="${MY_INFODIR}" EOF + + docompress "${MY_INFODIR}" } diff --git a/dev-build/automake/automake-9999.ebuild b/dev-build/automake/automake-9999.ebuild index a16d0ba489bc..b65ba04aa145 100644 --- a/dev-build/automake/automake-9999.ebuild +++ b/dev-build/automake/automake-9999.ebuild @@ -125,4 +125,6 @@ src_install() { newenvd - "06automake${idx}" <<-EOF INFOPATH="${infopath}" EOF + + docompress "${MY_INFODIR}" } |