Gentoo Archives: gentoo-dev

From: Ulrich Mueller <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: vim@g.o
Subject: Re: [gentoo-dev] [PATCH 1/3] vim-plugin.eclass: dohtml is now obsolete.
Date: Sat, 04 Nov 2017 23:09:32
Message-Id: 23038.18593.222500.559171@a1i15.kph.uni-mainz.de
In Reply to: [gentoo-dev] [PATCH 1/3] vim-plugin.eclass: dohtml is now obsolete. by Patrice Clement
1 >>>>> On Sat, 4 Nov 2017, Patrice Clement wrote:
2
3 > - if [[ "${f}" = *.html ]]; then
4 > - dohtml "${f}"
5 > - else
6 > - dodoc "${f}"
7 > - fi
8 > + dodoc "${f}"
9
10 That's not exactly equivalent, because *.html files won't be installed
11 in the html/ subdirectory any more, but in /usr/share/doc/${PF}/.
12
13 Note that the former is in the default exclusion list for compression
14 but the latter is not (i.e., *.html may get compressed now).