in reply to Pseudo-installing modules

If you can place modules somewhere you should be able to use the lib module to add directories to your module search path. Something to the effect:

use lib qw( /home/foo/perllib/ ) ;
And then put your modules in that directory.

HTH

-Ducky