Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
View Bug Activity | Format For Printing | XML | Clone This Bug
The ebuild of epsxe reads: use opengl && GLDEPEND="app-emulation/psemu-gpupetemesagl" use opengl || GLDEPEND="app-emulation/psemu-peopssoftgpu" DEPEND="app-arch/unzip" RDEPEND=">=dev-libs/glib-1.2 =x11-libs/gtk+-1.2* =sys-libs/ncurses-5* =sys-libs/zlib-1* net-misc/wget app-emulation/psemu-peopsspu ${GLDEPEND}" So when opengl is set in USE variable psemu-gpupetemesagl and when not psemu-peopssoftgpu, but it doesn't. I've had set opengl in USE and every time psemu-peopssoftgpu will be installed and not psemu-gpupetemesagl. So when I change the lines to: DEPEND="app-arch/unzip" RDEPEND=">=dev-libs/glib-1.2 =x11-libs/gtk+-1.2* =sys-libs/ncurses-5* =sys-libs/zlib-1* net-misc/wget app-emulation/psemu-peopsspu ( opengl? app-emulation/psemu-gpupetemesagl : app-emulation/psemu-peopssoftgpu )" ...it works correctly. I've had posted the epsxe-1.5.2-r1.ebuild with it.
Created an attachment (id=14431) [edit] epsxe-1.5.2-r1.ebuild
ive changed it to this: || ( opengl? ( app-emulation/psemu-gpupetemesagl ) app-emulation/psemu-peopssoftgpu ) thanks for the bug :)