diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-10-14 18:16:32 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-10-14 18:16:32 +0000 |
commit | 6595a06b637ddcbe7621d370f5d8f752dc356c96 (patch) | |
tree | 7057c0eb84956f6e8840b959907ecfe822282c48 /media-video/dirac | |
parent | Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug ... (diff) | |
download | gentoo-2-6595a06b637ddcbe7621d370f5d8f752dc356c96.tar.gz gentoo-2-6595a06b637ddcbe7621d370f5d8f752dc356c96.tar.bz2 gentoo-2-6595a06b637ddcbe7621d370f5d8f752dc356c96.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-video/dirac')
-rw-r--r-- | media-video/dirac/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/dirac/dirac-1.0.2-r1.ebuild | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/media-video/dirac/ChangeLog b/media-video/dirac/ChangeLog index 02c47367f89a..3a4938934cb0 100644 --- a/media-video/dirac/ChangeLog +++ b/media-video/dirac/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/dirac # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dirac/ChangeLog,v 1.43 2013/08/12 15:38:30 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dirac/ChangeLog,v 1.44 2013/10/14 18:16:32 mgorny Exp $ + + 14 Oct 2013; Michał Górny <mgorny@gentoo.org> dirac-1.0.2-r1.ebuild: + Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug + #483304. *dirac-1.0.2-r1 (12 Aug 2013) @@ -155,4 +159,3 @@ First addition to portage, needed to build dirac codec support on VLC. Added patch to make documentation compilation optional. It uses cppunit if present to do unit testing, but it has its own testsuite also if it's not present. - diff --git a/media-video/dirac/dirac-1.0.2-r1.ebuild b/media-video/dirac/dirac-1.0.2-r1.ebuild index 44b8e4d7d96b..544aaf9a8fbe 100644 --- a/media-video/dirac/dirac-1.0.2-r1.ebuild +++ b/media-video/dirac/dirac-1.0.2-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-video/dirac/dirac-1.0.2-r1.ebuild,v 1.1 2013/08/12 15:38:30 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dirac/dirac-1.0.2-r1.ebuild,v 1.2 2013/10/14 18:16:32 mgorny Exp $ EAPI=5 inherit autotools eutils multilib-minimal @@ -52,5 +52,6 @@ multilib_src_install() { } multilib_src_install_all() { - find "${ED}"usr -name '*.la' -exec rm -f {} + + prune_libtool_files --all + einstalldocs } |