diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-10-14 16:48:39 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-10-14 16:48:39 +0000 |
commit | 74711b721230c86d855283a70f081f85292ff85b (patch) | |
tree | d67217ff730a217912036c637beb09f213e68782 /media-libs | |
parent | Clean up the deps & configure call. Add USE=ncurses to control terminfo use. (diff) | |
download | gentoo-2-74711b721230c86d855283a70f081f85292ff85b.tar.gz gentoo-2-74711b721230c86d855283a70f081f85292ff85b.tar.bz2 gentoo-2-74711b721230c86d855283a70f081f85292ff85b.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/libaacplus/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/media-libs/libaacplus/ChangeLog b/media-libs/libaacplus/ChangeLog index c7567c130804..e2aef49de98a 100644 --- a/media-libs/libaacplus/ChangeLog +++ b/media-libs/libaacplus/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libaacplus # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libaacplus/ChangeLog,v 1.14 2013/08/11 20:51:56 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libaacplus/ChangeLog,v 1.15 2013/10/14 16:48:39 mgorny Exp $ + + 14 Oct 2013; Michał Górny <mgorny@gentoo.org> libaacplus-2.0.2-r2.ebuild: + Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug + #483304. *libaacplus-2.0.2-r2 (11 Aug 2013) @@ -54,4 +58,3 @@ 27 Sep 2011; Alexis Ballier <aballier@gentoo.org> +libaacplus-2.0.2.ebuild, +metadata.xml: initial import, ebuild by me - diff --git a/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild b/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild index db620f71ad62..2917d901b4b3 100644 --- a/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild +++ b/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild,v 1.1 2013/08/11 20:51:56 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild,v 1.2 2013/10/14 16:48:39 mgorny Exp $ EAPI=5 -inherit autotools multilib-minimal +inherit autotools eutils multilib-minimal # This file cannot be mirrored. # See the notes at http://tipok.org.ua/node/17 @@ -58,5 +58,6 @@ multilib_src_compile() { } multilib_src_install_all() { - find "${D}" -name '*.la' -exec rm -f {} + + prune_libtool_files --all + einstalldocs } |