On Mon, 24 Feb 2014 17:52:13 +0800, William Kenworthy wrote: > moriah ~ # emerge gnome-base/gnome-settings-daemon -vp > > These are the packages that would be merged, in order: > > Calculating dependencies... done! > [ebuild N ] gnome-base/gnome-desktop-3.8.4:3/7 > USE="introspection -debug" 1,019 kB > [ebuild N ] x11-themes/gnome-themes-standard-3.8.4 USE="gtk" > 3,765 kB [ebuild N ] sys-apps/systemd-208-r2:0/1 USE="filecaps > firmware-loader gcrypt kmod lzma pam policykit python tcpd xattr -acl > -audit -cryptsetup -doc -gudev -http -introspection -qrcode (-selinux) > {-test} -vanilla" PYTHON_SINGLE_TARGET="python2_7" > PYTHON_TARGETS="python2_7" 2,335 kB > [ebuild N ] sys-apps/gentoo-systemd-integration-2 0 kB > [ebuild N ] gnome-base/gnome-settings-daemon-3.8.6.1 USE="colord > cups i18n policykit short-touchpad-timeout udev -debug (-openrc-force) > (-packagekit) {-test}" INPUT_DEVICES="-wacom" 1,543 kB > [blocks B ] sys-apps/systemd ("sys-apps/systemd" is blocking > sys-fs/eudev-1.4-r1) > > > I have a system like the above ... eudev/openrc with openrc-force in > the USE flags and the 13.0 profile (not desktop/gnome etc) > > As you can see above, something is forcing (-openrc-force) - any ideas > on how to get it to honour the openrc-force flag or find out what is > causing the problem? > > BillK > openrc-force is masked in /usr/portage/profiles/base/use.mask: # Pacho Ramos (28 Sep 2013) # This USE flag is available after long dicussion in # http://www.gossamer-threads.com/lists/gentoo/dev/276077 # to let some prople not able to run systemd to skip the dep (#480336). # Enabling this you will get a fully unsupported Gnome setup that # could suffer unexpected problem, don't expect support for it then. openrc-force If you are unfamiliar with gentoo's profiles, most (all the handbook-documented) profiles inherit the "base" profile which contains this file, which means this mask is in effect on most systems. None of the other profiles currently disable this use-mask. emerge's output indicates to you that this use flag is masked by enclosing it in parenthesis, check the documentation for the --verbose switch in emerge(1)[1]. Use-flag masks from the selected profile (and the opposite, force) override the use-flag settings normally made by users in make.conf and package.use. User modifications to the profile should be made in /etc/portage/profile/, see portage(5)[2]. To un-mask the openrc use flag, you can create the file /etc/portage/profile/use.mask with this line: -openrc-force 1: https://dev.gentoo.org/~zmedico/portage/doc/man/emerge.1.html 2: https://dev.gentoo.org/~zmedico/portage/doc/man/portage.5.html -- eroen