Commit bba1e4cb authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Jonathan Corbet
Browse files

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: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent 8e7d5d15
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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()