Added lots more modules from lintian. Maemian appears to work.
[maemian] / lib / Maemian / Output.pm
index 2d65d9e..af40f10 100644 (file)
@@ -39,23 +39,23 @@ BEGIN {
 
 =head1 NAME
 
-Lintian::Output - Lintian messaging handling
+Maemian::Output - Maemian messaging handling
 
 =head1 SYNOPSIS
 
     # non-OO
-    use Lintian::Output qw(:messages)
+    use Maemian::Output qw(:messages)
 
-    $Lintian::Output::GLOBAL->verbose(1);
+    $Maemian::Output::GLOBAL->verbose(1);
 
     msg("Something interesting");
     v_msg("Something less interesting");
     debug_msg(3, "Something very specfific");
 
     # OO
-    use Lintian::Output;
+    use Maemian::Output;
 
-    my $out = new Lintian::Output;
+    my $out = new Maemian::Output;
 
     $out->quiet(1);
     $out->msg("Something interesting");
@@ -64,12 +64,12 @@ Lintian::Output - Lintian messaging handling
 
 =head1 DESCRIPTION
 
-Lintian::Output is used for all interaction between lintian and the user.
+Maemian::Output is used for all interaction between lintian and the user.
 It is designed to be easily extendable via subclassing.
 
-To simplify usage in the most common cases, many Lintian::Output methods
+To simplify usage in the most common cases, many Maemian::Output methods
 can be used as class methods and will therefor automatically use the object
-$Lintian::Output::GLOBAL unless their first argument C<isa('Lintian::Output')>.
+$Maemian::Output::GLOBAL unless their first argument C<isa('Maemian::Output')>.
 
 =cut
 
@@ -80,7 +80,7 @@ use Tags ();
 
 =head1 ACCESSORS
 
-The following fields define the behaviours of Lintian::Output.
+The following fields define the behaviours of Maemian::Output.
 
 =over 4
 
@@ -154,7 +154,7 @@ sub new {
 =head1 CLASS/INSTANCE METHODS
 
 These methods can be used both with and without an object.  If no object
-is given, they will fall back to the $Lintian::Output::GLOBAL object.
+is given, they will fall back to the $Maemian::Output::GLOBAL object.
 
 =over 4
 
@@ -483,7 +483,7 @@ Exports all the methods in L<CLASS METHODS>
 
 =head1 AUTHOR
 
-Originally written by Frank Lichtenheld <djpig@debian.org> for Lintian.
+Originally written by Frank Lichtenheld <djpig@debian.org> for Maemian.
 Modified by Jeremiah C. Foster <jeremiah@maemo.org> for maemian.
 
 =head1 SEE ALSO