Hello, ok i am having issues with dbus and would like to re emerge dbus plus its dependencies and reverse dependencies, it there an emerge command to achieve this or will have to list them manually?
cheers
Code: Select all
emerge --oneshot $(qdepends -NC <pkg> | cut -f2 -d ':')
lnxz wrote:Unless you've already tried it, you should check out revdep-rebuild from app-portage/gentoolkit.
Alternativly you could try qdepends from app-portage/portage-utils, which allows you to do something like this:This will (hopefully) rebuild whatever is listed in the package's DEPEND.Code: Select all
emerge --oneshot $(qdepends -NC <pkg> | cut -f2 -d ':')
Use the '-r' switch with qdepends to use RDEPEND instead.