January 18th 2010
On a gentoo system you may get the error
QA Notice: Package has poor programming practices which may compile but will almost certainly crash on 64bit architectures
during emerge. This is usually a wanted behaviour since one does not want to have broken packages installed, but sometimes you may want to decide yourself or you need the program and can live with crashes that may occur under certain circumstances. As far as I know portage does not give us an easy method to override this.
You may change this behaviour by changing line 477 in /usr/lib/portage/bin/misc-functions.sh to i.e.
if [[ ${abort} == “disabled” ]] ; then
After emerging the brocken package you usually want to change the line back to
if [[ ${abort} == “yes” ]] ; then
to prevent having broken packages on your system without knowing about it.
Hoping this information is of some help.
Jürgen

Loading...
Posted in gentoo, linux | No Comments »
January 14th 2010
One year ago I provided a gentoo ebuild for mplayer which included support for quad-buffered stereo, enabling mplayer to display stereoscopic movies like the great movie Avatar3D I watched in cinema today. To learn more about the movie look here and here. Sadly the patch I referenced there does not apply over newer mplayer versions. So I had to modify the original patch from Stuart Levy to work again with newer mplayer versions. You may download the updated patch from here:
[download#35]
New version available!
The patch should work at least with nvidia quadro boards, probably with some others. It can be used with CRT and generic shutter glasses or HMDs like the Vusix VR920. Some stereoscopic sample movies for trying it out can be found on www.3d.wep.dk.
For Gentoo users I also modified the mplayer ebuild from portage to include the patch. The modified ebuild is available here:
[download#36]
New version available!
The older ebuild is still available on mygnu.de.
To use the ebuild it just copy it to /usr/local/portage/media-video/mplayer and copy the the patch to the “/usr/local/portage/media-video/mplayer/files” directory. You probably have to create these directories. Then run
ebuild /usr/local/portage/media-video/mplayer/mplayer-1.0_rc4_p20091026-r1.ebuild digest
Be sure to include the following line in your /etc/make.conf.
PORTDIR_OVERLAY=”/usr/local/portage”
Then just re-emerge mplayer.
Now start mplayer with -vo gl2:stereo and enjoy the experience in the 3rd dimension again.
Jürgen

Loading...
Posted in 3d, gentoo, linux, multimedia | 9 Comments »