searching for x11-libs/gtk+ will match any package that contains x11-libs/gtk as the argument is treated like a regular expression. The + should be escaped to make it a literal string. Like so: # emerge --oneshot \ $(for i in x11-proto/ x11-libs/libxcb x11-libs/libX11 x11-libs/libXext \ x11-libs/libX x11-libs/xcb-util x11-libs/cairo \ x11-libs/pango x11-libs/gtk\\+ \ x11-libs/qt-gui; do \ qlist -IC $i; \ done) -pv Reproducible: Always
Indeed, thanks much for the fix :) Cheers