diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-06-25 20:11:47 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-06-25 20:11:47 +0000 |
commit | 8097d431a26c84e176e8c6fe7989360f6aaa11d7 (patch) | |
tree | 95d60eb63747a3322655082da54651ed6c46a48b /media-libs/libvpx | |
parent | broken hotot was removed (diff) | |
download | gentoo-2-8097d431a26c84e176e8c6fe7989360f6aaa11d7.tar.gz gentoo-2-8097d431a26c84e176e8c6fe7989360f6aaa11d7.tar.bz2 gentoo-2-8097d431a26c84e176e8c6fe7989360f6aaa11d7.zip |
copy some more addpredict from php-pear-r1.eclass; hopefully this should fix all the sandbox violations. bug #465988. Also actually install the docs we built.
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/libvpx')
-rw-r--r-- | media-libs/libvpx/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libvpx/libvpx-9999.ebuild | 8 |
2 files changed, 13 insertions, 2 deletions
diff --git a/media-libs/libvpx/ChangeLog b/media-libs/libvpx/ChangeLog index b31877058a20..6dc6548584d7 100644 --- a/media-libs/libvpx/ChangeLog +++ b/media-libs/libvpx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libvpx # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.91 2013/06/25 19:38:34 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.92 2013/06/25 20:11:47 aballier Exp $ + + 25 Jun 2013; Alexis Ballier <aballier@gentoo.org> libvpx-9999.ebuild: + copy some more addpredict from php-pear-r1.eclass; hopefully this should fix + all the sandbox violations. bug #465988. Also actually install the docs we + built. 25 Jun 2013; Alexis Ballier <aballier@gentoo.org> libvpx-9999.ebuild: test the libvpx.so we just built, not the system one diff --git a/media-libs/libvpx/libvpx-9999.ebuild b/media-libs/libvpx/libvpx-9999.ebuild index 978519a72ede..b877f6fe7d71 100644 --- a/media-libs/libvpx/libvpx-9999.ebuild +++ b/media-libs/libvpx/libvpx-9999.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/libvpx/libvpx-9999.ebuild,v 1.42 2013/06/25 19:38:34 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.43 2013/06/25 20:11:47 aballier Exp $ EAPI=4 inherit multilib toolchain-funcs multilib-minimal @@ -59,7 +59,12 @@ multilib_src_configure() { esac # http://bugs.gentoo.org/show_bug.cgi?id=384585 + # https://bugs.gentoo.org/show_bug.cgi?id=465988 + # copied from php-pear-r1.eclass addpredict /usr/share/snmp/mibs/.index + addpredict /var/lib/net-snmp/ + addpredict /var/lib/net-snmp/mib_indexes + addpredict /session_mm_cli0.sem # Build with correct toolchain. tc-export CC CXX AR NM @@ -108,4 +113,5 @@ multilib_src_test() { multilib_src_install() { emake verbose=yes GEN_EXAMPLES= DESTDIR="${D}" install + [ "${ABI}" = "${DEFAULT_ABI}" ] && use doc && dohtml docs/html/* } |