]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blobdiff - src/install+setup/libsmooth/makelangs.pl
Ein Paar Dateien fuer die GPLv3 angepasst.
[people/teissler/ipfire-2.x.git] / src / install+setup / libsmooth / makelangs.pl
index 4f6b31d5aa870d51db701e711519592fa29d18b9..6fc2098d4e357f4f32e4fe64a086561c185222a9 100644 (file)
@@ -1,13 +1,27 @@
-#!/usr/bin/perl\r
-#\r
-# $Id: makelangs.pl,v 1.4 2003/12/11 11:25:53 riddles Exp $\r
-#\r
-# Used to process lang_en.c and build the enum type from comments embeded \r
-# within said source file.\r
-\r
-while (<>)\r
-{\r
-       if (/\/\* (TR_[A-Z0-9_]*)/) {\r
-               print "\t$1,\n"; }\r
-} \r
-print "};\n";\r
+#!/usr/bin/perl
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+#                                                                             #
+# 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 3 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, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+while (<>)
+{
+       if (/\/\* (TR_[A-Z0-9_]*)/) {
+               print "\t$1,\n"; }
+} 
+print "};\n";