First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 24387
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Games <games@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: tuXXer <bs.net@gmx.de>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
epsxe-1.5.2-r1.ebuild epsxe-1.5.2-r1.ebuild text/plain tuXXer 2003-07-13 07:01 0000 925 bytes Details
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 24387 depends on: Show dependency tree
Show dependency graph
Bug 24387 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)







View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2003-07-13 07:01 0000
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.

------- Comment #1 From tuXXer 2003-07-13 07:01:45 0000 -------
Created an attachment (id=14431) [edit]
epsxe-1.5.2-r1.ebuild

------- Comment #2 From SpanKY 2003-07-13 15:00:57 0000 -------
ive changed it to this: 
|| ( 
	opengl? ( app-emulation/psemu-gpupetemesagl ) 
	app-emulation/psemu-peopssoftgpu 
) 
 
thanks for the bug :) 

First Last Prev Next    No search results available      Search page      Enter new bug