diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-07-18 00:46:41 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2017-07-24 00:51:40 +0300 |
commit | bba1e4cbdb5aadc937d70f04d1d07752828e4b2d (patch) | |
tree | fd8a0c1a354154c0007db944f94a7e30a3aa0b27 | |
parent | 8e7d5d15e73fde2b22649783d4f0fa4495a1582f (diff) | |
download | linux-bba1e4cbdb5aadc937d70f04d1d07752828e4b2d.tar.xz |
sphinx-pre-install: fix USE needs for GraphViz and ImageMagick
Gentoo need some USE for GraphViz and ImageMagick to have
the features required by kfigure.py.
Output that when providing instructions for Gentoo.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rwxr-xr-x | scripts/sphinx-pre-install | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/sphinx-pre-install b/scripts/sphinx-pre-install index fc9891ce5c85..2d18064d57b4 100755 --- a/scripts/sphinx-pre-install +++ b/scripts/sphinx-pre-install @@ -393,7 +393,12 @@ sub give_gentoo_hints() check_missing(\%map); return if (!$need && !$optional); - printf("You should run:\n\n\tsudo emerge --ask $install\n"); + + printf("You should run:\n\n"); + printf("\tsudo su -c 'echo \"media-gfx/imagemagick svg png\" > /etc/portage/package.use/imagemagick'\n"); + printf("\tsudo su -c 'echo \"media-gfx/graphviz cairo pdf\" > /etc/portage/package.use/graphviz'\n"); + printf("\tsudo emerge --ask $install\n"); + } sub check_distros() |