Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 535720 - x11-misc/zim ebuild improvement: install dependency on demand with USE
Summary: x11-misc/zim ebuild improvement: install dependency on demand with USE
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Desktop Misc. Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-05 21:05 UTC by Jonas Stein
Modified: 2015-01-06 08:47 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jonas Stein gentoo-dev 2015-01-05 21:05:14 UTC
The ebuild prints:
====
		einfo "Please emerge these packages for additional functionality"
		einfo "    dev-lang/R"
		einfo "    sci-visualization/gnuplot" ...
====

perhaps this can be emerged with use flags in the ebuild like: 

DEPEND="R? ( dev-lang/R )
gnuplot? ( sci-visualization/gnuplot )"


Reproducible: Always
Comment 1 Jeroen Roovers (RETIRED) gentoo-dev 2015-01-06 08:47:32 UTC
(In reply to Jonas Stein from comment #0)
> perhaps this can be emerged with use flags in the ebuild like: 
> 
> DEPEND="R? ( dev-lang/R )
> gnuplot? ( sci-visualization/gnuplot )"

So you would end up needlessly recompiling zim just to pull in two dependencies? No, that einfo is fine.

Also, that should read RDEPEND as apparently they are run-time dependencies not needed at build time. But it's invalid all the same.