If we have sox installed on out machine then 'USE="-sox" emerge
terminatorx-3.81' will install terminatorx with sox support regardless
of our wishes:
# USE="-sox" emerge terminatorx
Calculating dependencies ...done!
>>> emerge (1 of 1) media-sound/terminatorx-3.81 to /
.....
sox support: yes
mpg123 support: yes
oss support: yes
.....
This is caused by the configure script auto-detecting sox and
making terminatorx get compiled with sox support unless we explicitely
tell it not to. The ebuild should read:
use sox \
&& myconf="${myconf} --enable-sox" \
|| myconf="${myconf} --disable-sox"
(The other USE flag options are correct. This just looks like a small
oversight with the sox USE flag.)