Index: /trunk/PS-IPP-PStamp/Build.PL
===================================================================
--- /trunk/PS-IPP-PStamp/Build.PL	(revision 23265)
+++ /trunk/PS-IPP-PStamp/Build.PL	(revision 23266)
@@ -3,6 +3,6 @@
 
 Module::Build->new(
-    module_name         => 'PStamp',
-    dist_version_from   => 'lib/PStamp.pm',
+    module_name         => 'PS::IPP::PStamp',
+    dist_version_from   => 'lib/PS/IPP/PStamp.pm',
     author              => 'Bill Sweeney',
     license             => 'gpl',
Index: /trunk/PS-IPP-PStamp/MANIFEST
===================================================================
--- /trunk/PS-IPP-PStamp/MANIFEST	(revision 23265)
+++ /trunk/PS-IPP-PStamp/MANIFEST	(revision 23266)
@@ -2,5 +2,5 @@
 LICENSE
 MANIFEST
-lib/PStamp.pm
-lib/PStamp/Job.pm
-lib/PStamp/RequestFile.pm
+lib/PS/IPP/PStamp.pm
+lib/PS/IPP/PStamp/Job.pm
+lib/PS/IPP/PStamp/RequestFile.pm
Index: /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp.pm
===================================================================
--- /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp.pm	(revision 23266)
+++ /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp.pm	(revision 23266)
@@ -0,0 +1,87 @@
+
+package PS::IPP::PStamp;
+
+use strict;
+use warnings;
+
+use vars qw($VERSION);
+$VERSION = '1.0';
+
+=pod
+
+=head1 NAME
+
+PStamp - Perl Module of Postage Stamp Server functions
+
+=head1 SYNOPSIS
+
+    use PStamp;
+
+    # equivalent to:
+
+    use Pstamp::RequestFile;
+
+=head1 DESCRIPTION
+
+This is a convenience module so that that don't have to individualy load (C<use
+...;>) all of the common PStamp inteface modules.  Please see the POD of the
+individual modules for usage information. 
+
+=head1 USAGE
+
+=head2 Import Parameters
+
+This module accepts no arguments to it's C<import> method and exports no
+I<symbols>.
+
+=head2 Methods
+
+None.
+
+=head1 EXAMPLE PROGRAM
+
+=cut
+
+use PStamp::RequestFile qw( :standard );
+use PStamp::Job qw( :standard );
+
+=head1 CREDITS
+
+
+=head1 SUPPORT
+
+Please contact the author directly via e-mail.
+
+=head1 AUTHOR
+
+Bill Sweeney
+
+=head1 COPYRIGHT
+
+Copyright (C) 2008  Bill Sweeney.  All rights reserved.
+
+This program is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free Software
+Foundation; either version 2 of the License, or (at your option) any later
+version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+Place - Suite 330, Boston, MA  02111-1307, USA.
+
+The full text of the license can be found in the LICENSE file included with
+this module, or in the L<perlgpl> Pod as supplied with Perl 5.8.1 and later.
+
+=head1 SEE ALSO
+
+L<PStamp::RequestFile>
+
+=cut
+
+1;
+
+__END__
Index: /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/Job.pm
===================================================================
--- /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/Job.pm	(revision 23265)
+++ /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/Job.pm	(revision 23266)
@@ -4,5 +4,5 @@
 ###
 
-package PStamp::Job;
+package PS::IPP::PStamp::Job;
 
 use strict;
Index: unk/PS-IPP-PStamp/lib/PS/IPP/PStamp/PStamp.pm
===================================================================
--- /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/PStamp.pm	(revision 23265)
+++ 	(revision )
@@ -1,87 +1,0 @@
-
-package PStamp;
-
-use strict;
-use warnings;
-
-use vars qw($VERSION);
-$VERSION = '1.0';
-
-=pod
-
-=head1 NAME
-
-PStamp - Perl Module of Postage Stamp Server functions
-
-=head1 SYNOPSIS
-
-    use PStamp;
-
-    # equivalent to:
-
-    use Pstamp::RequestFile;
-
-=head1 DESCRIPTION
-
-This is a convenience module so that that don't have to individualy load (C<use
-...;>) all of the common PStamp inteface modules.  Please see the POD of the
-individual modules for usage information. 
-
-=head1 USAGE
-
-=head2 Import Parameters
-
-This module accepts no arguments to it's C<import> method and exports no
-I<symbols>.
-
-=head2 Methods
-
-None.
-
-=head1 EXAMPLE PROGRAM
-
-=cut
-
-use PStamp::RequestFile qw( :standard );
-use PStamp::Job qw( :standard );
-
-=head1 CREDITS
-
-
-=head1 SUPPORT
-
-Please contact the author directly via e-mail.
-
-=head1 AUTHOR
-
-Bill Sweeney
-
-=head1 COPYRIGHT
-
-Copyright (C) 2008  Bill Sweeney.  All rights reserved.
-
-This program is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free Software
-Foundation; either version 2 of the License, or (at your option) any later
-version.
-
-This program is distributed in the hope that it will be useful, but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-PARTICULAR PURPOSE.  See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along with
-this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-Place - Suite 330, Boston, MA  02111-1307, USA.
-
-The full text of the license can be found in the LICENSE file included with
-this module, or in the L<perlgpl> Pod as supplied with Perl 5.8.1 and later.
-
-=head1 SEE ALSO
-
-L<PStamp::RequestFile>
-
-=cut
-
-1;
-
-__END__
Index: /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/RequestFile.pm
===================================================================
--- /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/RequestFile.pm	(revision 23265)
+++ /trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/RequestFile.pm	(revision 23266)
@@ -6,5 +6,5 @@
 ###
 
-package PStamp::RequestFile;
+package PS::IPP::PStamp::RequestFile;
 
 use strict;
