Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 486360 - font.eclass: use einstalldocs from eutils.eclass instead of custom detection
Summary: font.eclass: use einstalldocs from eutils.eclass instead of custom detection
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Fonts Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-28 19:11 UTC by Pacho Ramos
Modified: 2024-01-08 13:26 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 Pacho Ramos gentoo-dev 2013-09-28 19:11:58 UTC
# install common docs
        for commondoc in COPYRIGHT README{,.txt} NEWS AUTHORS BUGS ChangeLog FONTLOG.txt; do
                [[ -s ${commondoc} ]] && dodoc ${commondoc}
        done

could be replaced with edocinstall from eutils.eclass and eapi6

Thanks
Comment 1 Samuli Suominen (RETIRED) gentoo-dev 2014-02-27 16:09:39 UTC
(In reply to Pacho Ramos from comment #0)
> # install common docs
>         for commondoc in COPYRIGHT README{,.txt} NEWS AUTHORS BUGS ChangeLog
> FONTLOG.txt; do
>                 [[ -s ${commondoc} ]] && dodoc ${commondoc}
>         done
> 
> could be replaced with edocinstall from eutils.eclass and eapi6

you must mean `einstalldocs` instead of `edoc...`
Comment 2 Ulrich Müller gentoo-dev 2022-07-29 08:06:20 UTC
Looks like this is fixed? font_src_install does this now:

	einstalldocs

	# install common docs
	for commondoc in COPYRIGHT FONTLOG.txt; do
		[[ -s ${commondoc} ]] && dodoc ${commondoc}
	done
Comment 3 Ulrich Müller gentoo-dev 2024-01-08 13:26:12 UTC
Closing as per comment #2.