Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 170417 | Differences between
and this patch

Collapse All | Expand All

(-)g15composer-3.1.ebuild (-2 / +10 lines)
Lines 22-31 Link Here
22
	amarok? ( dev-perl/DCOP-Amarok-Player )"
22
	amarok? ( dev-perl/DCOP-Amarok-Player )"
23
23
24
pkg_setup() {
24
pkg_setup() {
25
	local failure=false
26
	echo
25
	if use amarok && ! built_with_use dev-lang/perl ithreads ; then
27
	if use amarok && ! built_with_use dev-lang/perl ithreads ; then
26
		echo
27
		eerror "dev-lang/perl must be built with USE=\"ithreads\" for the Amarok display to work."
28
		eerror "dev-lang/perl must be built with USE=\"ithreads\" for the Amarok display to work."
28
		die
29
		failure=true
30
	fi
31
	if use truetype && ! built_with_use dev-libs/libg15render truetype ; then
32
		eerror "dev-libs/libg15render must be built with USE=\"truetype\" for truetype to work."
33
		failure=true
34
	fi
35
	if ${failure}; then
36
		die "Please rebuild the packages with corrected USE flags."
29
	fi
37
	fi
30
}
38
}
31
39

Return to bug 170417