in reply to Dynamic USE and %INC

No need to load the package. Replace

use Somepackage qw($SOME_VAR);
with
Somepackage->import(qw($SOME_VAR));
and get rid of the %INC line.

the lowliest monk