You are not logged in.
I need to install fglrx kernel module and xorg module, but without libGL stuff.
I can install package with kernel module, that's no problem.
Problem is that package with xorg module (named ati-fglrx-utils) contains also fglrx-specific libGL and conflicts with libgl-dri.
I need to avoid this conflict, I need fglrx and DRI installed at same time.
The reason is little complex - DRI crashes on Radeon 9800, but there is a way to eliminate this crash - I need to run xorg once with fglrx driver (even without the 3D stuff).
Is there a way to have package ati-fglrx-utils without libGL or do I need to create new, alternative package? How can I modify ati-fglrx-utils?
PS. Sure, I can do it manually without package, but I want to make it "good"
Offline
You'd probably want to modify the existing package. All you'd really have to do is remove the conflicts=(libgl) provides=(libgl) part, and at the bottom of the build function execute
rm $startdir/pkg/usr/lib/libGL.*
Offline
you can also install fglrx driver first, and install libgl with -df flag.
# pacman -S ati-fglrx
# pacman -Sdf libgl-dri
Offline
Thank you both for useful responses.
Offline