Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 426950

Summary: media-gfx/blender-2.63a[doc] sandbox error
Product: Gentoo Linux Reporter: Weihua Zhou <zhouwh>
Component: Current packagesAssignee: Diego Elio Pettenò (RETIRED) <flameeyes>
Status: RESOLVED FIXED    
Severity: normal CC: lu_zero
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Weihua Zhou 2012-07-17 08:55:01 UTC
As title. When I emerge blender 2.63a, there will always be a sandbox error. The reason is that in the ebuild file '-noaudio' but not '--noaudio' should be used.

Reproducible: Always

Steps to Reproduce:
1.emerge =media-gfx/blender-2.63a-r2
2.
3.
Comment 1 Weihua Zhou 2012-07-17 08:57:36 UTC
It's trivial to fix this bug, just change line 256 of the ebuild file from:


"${D}"/usr/bin/blender --background --python doc/python_api/sphinx_doc_gen.py --noaudio || die "blender failed."

to:


"${D}"/usr/bin/blender --background --python doc/python_api/sphinx_doc_gen.py -noaudio || die "blender failed."


The option '--noaudio' is not a valid option for blender, it should be '-noaudio'
Comment 2 Diego Elio Pettenò (RETIRED) gentoo-dev 2012-07-17 10:55:06 UTC
Thanks for reporting, fixed now.