diff options
author | 2013-10-14 17:47:48 +0000 | |
---|---|---|
committer | 2013-10-14 17:47:48 +0000 | |
commit | ef4abd875c48f45f8d284487bcb4277f98b130b4 (patch) | |
tree | 0c0b227b0183614cd6607333bdd64e243d2a4771 /media-libs | |
parent | Remove old. (diff) | |
download | gentoo-2-ef4abd875c48f45f8d284487bcb4277f98b130b4.tar.gz gentoo-2-ef4abd875c48f45f8d284487bcb4277f98b130b4.tar.bz2 gentoo-2-ef4abd875c48f45f8d284487bcb4277f98b130b4.zip |
Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug #483304.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libtheora/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libtheora/libtheora-1.1.1-r1.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/media-libs/libtheora/ChangeLog b/media-libs/libtheora/ChangeLog index 5522bdc753ee..abdf768aabf9 100644 --- a/media-libs/libtheora/ChangeLog +++ b/media-libs/libtheora/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libtheora # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.113 2013/07/04 15:35:51 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.114 2013/10/14 17:47:48 mgorny Exp $ + + 14 Oct 2013; Michał Górny <mgorny@gentoo.org> libtheora-1.1.1-r1.ebuild: + Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug + #483304. 02 Jul 2013; Alexis Ballier <aballier@gentoo.org> libtheora-1.1.1-r1.ebuild: Fix installation with USE=doc examples, bug #475138 by Conway S. Smith. diff --git a/media-libs/libtheora/libtheora-1.1.1-r1.ebuild b/media-libs/libtheora/libtheora-1.1.1-r1.ebuild index bf98347ea1df..2e3ab381d050 100644 --- a/media-libs/libtheora/libtheora-1.1.1-r1.ebuild +++ b/media-libs/libtheora/libtheora-1.1.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.2 2013/07/02 22:08:20 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.3 2013/10/14 17:47:48 mgorny Exp $ EAPI=5 inherit autotools eutils flag-o-matic multilib-minimal @@ -77,11 +77,12 @@ multilib_src_install() { newbin examples/.libs/${bin} theora_${bin} done fi - - prune_libtool_files } multilib_src_install_all() { + prune_libtool_files + einstalldocs + if use examples && use doc; then docinto examples dodoc examples/*.[ch] |