install rpm-3.0.6p4.tgz conflict with rpm2cpio-1.2.tgz

They install the same files in the same place. Use one or the other.
 
thank you, for your response.

why i try install rpm... beacause i would like instal a rpm packages.

may be you have another method to do this ?
 
SirDice said:
Bad example, linux-f10-flashplugin10 is a tar.gz and doesn't use rpm ;)

Yeah, it was the only one that came to mind without having to look it up ;)
 
Exactly. Funny thing is that the rpm port itself is not listed as a dependency ...

Code:
$ pkg_info -R rpm-3.0.6_15                                                                                               
Information for rpm-3.0.6_15:
Code:
$ pkg_info -r linux_base-f10-10_2
Information for linux_base-f10-10_2:

Depends on:
 
It's an extract dependency in the Makefile:
Code:
EXTRACT_DEPENDS+=       ${RPM2CPIO}:${PORTSDIR}/archivers/rpm

So like a BUILD_DEPENDS, after that step it's not a dependency any more.
 
to extract content of rp; package then run it i flow this tapes :
first extract rpm package :
Code:
rpm2cpio pkg-name.fc10.i386.rpm | cpio -idm
then move the content of extracted to /compat :
Code:
mv -R /home/SIFE/usr/ /compat/usr/
 
Back
Top