Description: new class 
--- /dev/null
+++ b/lib/Software/License/GPL_2_plus.pm
@@ -0,0 +1,43 @@
+use strict;
+use warnings;
+package Software::License::GPL_2_plus;
+
+use base 'Software::License::GPL_2';
+
+sub name { 'The GNU General Public License, Version 2 or later' }
+
+1;
+
+=pod
+
+=head1 NAME
+
+Software::License::GPL_2_plus - GNU General Public License, Version 2 or later
+
+=head1 VERSION
+
+version 0.103002
+
+=head1 AUTHOR
+
+Dominique Dumont <ddumont@cpan.org>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2011 by Dominique Dumont
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=cut
+
+
+__DATA__
+__DEBIAN-SUMMARY__
+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; version 2 dated June, 1991, or (at your
+option) any later version.
+
+On Debian systems, the complete text of version 2 of the GNU General
+Public License can be found in '/usr/share/common-licenses/GPL-2'.
--- a/lib/Software/License.pm
+++ b/lib/Software/License.pm
@@ -15,6 +15,7 @@
   'GPL-1'  => 'GPL_1',
   'GPL-1+' => 'GPL_1_plus',
   'GPL-2'  => 'GPL_2',
+  'GPL-2+' => 'GPL_2_plus',
   'GPL-3'  => 'GPL_3',
   'LGPL-2.1' => 'LGPL_2_1',
   'LGPL-3'   => 'LGPL_3_0',
