|
|
发表于 2008-12-2 14:19:18
|
显示全部楼层
我这里real 加到哪里都不管用 emerge --info 死活看不到real 标记...
就算 USE="real" emerge mplayer 都看不到real.....
最后强行修改mplayer 的ebuild文件 才算搞定mplayer播放rmvb
- # Real codec support, only available on x86, amd64
- [color="DarkRed"]if use real && use x86[/color]; then
- myconf="${myconf} --realcodecsdir=/opt/RealPlayer/codecs"
- [color="DarkRed"]elif use real && use amd64[/color]; then
- myconf="${myconf} --realcodecsdir=/usr/$(get_libdir)/codecs"
- else
- myconf="${myconf} --disable-real"
- fi
- if ! use bindist && ! use real; then
- myconf="${myconf} $(use_enable win32codecs win32dll)"
- fi
复制代码 |
|