Description of problem: xorg-x11-deprecated-libs doesn't seem to be in any FC5 repos. Its needed to install Zend Studio. I installed libXp-devel but it didn't seem to help any. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1.yum install xorg-x11-deprecated-libs 2. 3. Actual results: No Match for argument: xorg-x11-deprecated-libs Expected results: install successful Additional info:
Nothing should ever be forcibly requiring xorg-x11-deprecated-libs. rpm autodetects shared libraries and adds dependencies on runtime shared libs to packages that need them. If Zend Studio has any "Requires: xorg-x11-deprecated-libs" lines in its spec file, it is mispackaged, and that line should be removed.
Please attach the Zend Studio rpm spec file, or a URL to it. Anything that links to libXp, should have a single buildrequires of: BuildRequires: libXp-devel There should be no "Requires: libXp" present, nor of the deprecated-libs package. If either are present, that is a packaging bug in the 3rd party software.
Closing as NOTABUG, as it is intentional that this package is not supplied. The proper solution to problems that occur as a result of this is outlined in comment #2.
The solution I was given by Zend is as follows $ cd /usr/local/Zend/ZendStudioClient-5.1.0/bin $ cp ZDE ZDE.bak $ cat ZDE.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > ZDE $ rm ZDE.bak This worked, I guess it wasn't really a RH bug but since that was my fix in FC4 I thought I needed it. Thanks.