OLD | NEW |
1 #!/usr/bin/perl -w | 1 #!/usr/bin/perl -w |
2 # This script was originally based on the script of the same name from | 2 # This script was originally based on the script of the same name from |
3 # the KDE SDK (by dfaure@kde.org) | 3 # the KDE SDK (by dfaure@kde.org) |
4 # | 4 # |
5 # This version is | 5 # This version is |
6 # Copyright (C) 2007, 2008 Adam D. Barratt | 6 # Copyright (C) 2007, 2008 Adam D. Barratt |
7 # Copyright (C) 2012 Francesco Poli | 7 # Copyright (C) 2012 Francesco Poli |
8 # | 8 # |
9 # This program is free software; you can redistribute it and/or modify | 9 # This program is free software; you can redistribute it and/or modify |
10 # it under the terms of the GNU General Public License as published by | 10 # it under the terms of the GNU General Public License as published by |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 $licensetext =~ /THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHA
NTABIL- ITY/) { | 466 $licensetext =~ /THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHA
NTABIL- ITY/) { |
467 if ($licensetext =~ /All advertising materials mentioning features or us
e of this software must display the following/) { | 467 if ($licensetext =~ /All advertising materials mentioning features or us
e of this software must display the following/) { |
468 $license = "BSD (4 clause) $license"; | 468 $license = "BSD (4 clause) $license"; |
469 } elsif ($licensetext =~ /be used to endorse or promote products derived
from this software/) { | 469 } elsif ($licensetext =~ /be used to endorse or promote products derived
from this software/) { |
470 $license = "BSD (3 clause) $license"; | 470 $license = "BSD (3 clause) $license"; |
471 } elsif ($licensetext =~ /Redistributions of source code must retain the
above copyright notice/) { | 471 } elsif ($licensetext =~ /Redistributions of source code must retain the
above copyright notice/) { |
472 $license = "BSD (2 clause) $license"; | 472 $license = "BSD (2 clause) $license"; |
473 } else { | 473 } else { |
474 $license = "BSD $license"; | 474 $license = "BSD $license"; |
475 } | 475 } |
| 476 } elsif ($licensetext =~ /This code is licensed under the same terms as WebM
/) { |
| 477 $license = "BSD (3 clause) $license"; |
476 } elsif ($licensetext =~ /Use of this source code is governed by a BSD-style
license/) { | 478 } elsif ($licensetext =~ /Use of this source code is governed by a BSD-style
license/) { |
477 $license = "BSD-like $license"; | 479 $license = "BSD-like $license"; |
478 } elsif ($licensetext =~ /BSD terms apply/) { | 480 } elsif ($licensetext =~ /BSD terms apply/) { |
479 $license = "BSD-like $license"; | 481 $license = "BSD-like $license"; |
480 } elsif ($licensetext =~ /subject to the BSD License/) { | 482 } elsif ($licensetext =~ /subject to the BSD License/) { |
481 # TODO(sbc): remove this case once we fix: http://crbug.com/177268 | 483 # TODO(sbc): remove this case once we fix: http://crbug.com/177268 |
482 $license = "BSD-like $license"; | 484 $license = "BSD-like $license"; |
483 } elsif ($licensetext =~ /GOVERNED BY A BSD-STYLE SOURCE LICENSE/) { | 485 } elsif ($licensetext =~ /GOVERNED BY A BSD-STYLE SOURCE LICENSE/) { |
484 $license = "BSD-like $license"; | 486 $license = "BSD-like $license"; |
485 } | 487 } |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 return $license; | 587 return $license; |
586 } | 588 } |
587 | 589 |
588 sub fatal($) { | 590 sub fatal($) { |
589 my ($pack,$file,$line); | 591 my ($pack,$file,$line); |
590 ($pack,$file,$line) = caller(); | 592 ($pack,$file,$line) = caller(); |
591 (my $msg = "$progname: fatal error at line $line:\n@_\n") =~ tr/\0//d; | 593 (my $msg = "$progname: fatal error at line $line:\n@_\n") =~ tr/\0//d; |
592 $msg =~ s/\n\n$/\n/; | 594 $msg =~ s/\n\n$/\n/; |
593 die $msg; | 595 die $msg; |
594 } | 596 } |
OLD | NEW |