LinuxCommandLibrary

euse

TLDR

List active global USE flags

$ euse -a -g
copy
List active local USE flags
$ euse -a -l
copy
Enable a global USE flag
$ sudo euse -E useflag
copy
Disable a global USE flag
$ sudo euse -D useflag
copy
Remove a global USE flag
$ sudo euse -P useflag
copy
Show info about a USE flag
$ euse -i useflag
copy

SYNOPSIS

euse [options] [useflag]

DESCRIPTION

euse is a Gentoo utility to enable, disable, and obtain information about USE flags. USE flags control which optional features are compiled into packages during installation.

PARAMETERS

-a, --active

Show active USE flags
-g, --global
Operate on global USE flags (make.conf)
-l, --local
Operate on local USE flags (package.use)
-E, --enable
Enable the specified USE flag
-D, --disable
Disable the specified USE flag (adds '-' prefix)
-P, --prune
Remove the specified USE flag from configuration
-i, --info
Show information about a USE flag

CAVEATS

Global USE flags are set in /etc/portage/make.conf. Local USE flags are set in /etc/portage/package.use/. After changing USE flags, affected packages should be rebuilt with emerge --changed-use.

HISTORY

euse is part of gentoolkit, a collection of administration scripts for Gentoo Linux.

SEE ALSO

emerge(1), equery(1), portage(5)

Copied to clipboard