diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-10-26 08:19:22 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-10-26 08:19:22 +0000 |
commit | 546cac9c3fcaa32399d4926770ecd980b0830fdd (patch) | |
tree | 75171210176228e866b9af135769970f601fdc2b /media-libs | |
parent | Fix bug 488606 template haskell may not be available on some architectures. (diff) | |
download | gentoo-2-546cac9c3fcaa32399d4926770ecd980b0830fdd.tar.gz gentoo-2-546cac9c3fcaa32399d4926770ecd980b0830fdd.tar.bz2 gentoo-2-546cac9c3fcaa32399d4926770ecd980b0830fdd.zip |
Override multilib_src_install_all() not to install docs rather than removing them post-install.
(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/tiff/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/tiff/tiff-3.9.7-r1.ebuild | 9 |
2 files changed, 9 insertions, 6 deletions
diff --git a/media-libs/tiff/ChangeLog b/media-libs/tiff/ChangeLog index 7845c3ed80d4..34e72938db75 100644 --- a/media-libs/tiff/ChangeLog +++ b/media-libs/tiff/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/tiff # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.254 2013/09/29 06:51:39 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.255 2013/10/26 08:19:22 mgorny Exp $ + + 26 Oct 2013; Michał Górny <mgorny@gentoo.org> tiff-3.9.7-r1.ebuild: + Override multilib_src_install_all() not to install docs rather than removing + them post-install. 29 Sep 2013; Samuli Suominen <ssuominen@gentoo.org> -files/tiff-4.0.2-CVE-2012-3401.patch, -files/tiff-4.0.2-bigendian.patch, diff --git a/media-libs/tiff/tiff-3.9.7-r1.ebuild b/media-libs/tiff/tiff-3.9.7-r1.ebuild index 4af1ce4c559c..a138653c4218 100644 --- a/media-libs/tiff/tiff-3.9.7-r1.ebuild +++ b/media-libs/tiff/tiff-3.9.7-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/tiff/tiff-3.9.7-r1.ebuild,v 1.3 2013/08/19 13:57:44 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-3.9.7-r1.ebuild,v 1.4 2013/10/26 08:19:22 mgorny Exp $ EAPI=5 @@ -66,8 +66,7 @@ multilib_src_install() { rm -rf "${ED}"/tmp } -src_install() { - multilib-minimal_src_install - # Setting DOCS="" is broken wrt bug #481642 - rm -rf "${ED}"/usr/share +multilib_src_install_all() { + # (avoid installing docs) + : } |