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 |
|