diff options
author | Tim Harder <radhermit@gentoo.org> | 2019-05-11 00:41:44 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2019-05-11 00:50:44 -0500 |
commit | 5ce72a11698272faeaa9d45cea677bc7c15a8a21 (patch) | |
tree | 84e82ce8aa31933ab9f644990da68c559d285dbd /dev-libs/libyaml | |
parent | dev-ruby/aws-eventstream: add 1.0.3 (diff) | |
download | gentoo-5ce72a11698272faeaa9d45cea677bc7c15a8a21.tar.gz gentoo-5ce72a11698272faeaa9d45cea677bc7c15a8a21.tar.bz2 gentoo-5ce72a11698272faeaa9d45cea677bc7c15a8a21.zip |
dev-libs/libyaml: fix doc build support
Also, stop installing example code.
Closes: https://bugs.gentoo.org/685594
Signed-off-by: Tim Harder <radhermit@gentoo.org>
Diffstat (limited to 'dev-libs/libyaml')
-rw-r--r-- | dev-libs/libyaml/libyaml-0.2.2.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/libyaml/libyaml-0.2.2.ebuild b/dev-libs/libyaml/libyaml-0.2.2.ebuild index b6373be87d00..84ef17996558 100644 --- a/dev-libs/libyaml/libyaml-0.2.2.ebuild +++ b/dev-libs/libyaml/libyaml-0.2.2.ebuild @@ -32,13 +32,13 @@ src_configure() { econf $(use_enable static-libs static) } +src_compile() { + emake + use doc && emake html +} + src_install() { use doc && HTML_DOCS=( doc/html/. ) default - find "${D}" -name '*.la' -delete || die - - docinto examples - dodoc tests/example-*.c - docompress -x /usr/share/doc/${PF}/examples } |