Add license.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
diff --git a/ChangeLog b/ChangeLog
index 29239c8..d1eea97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2005-06-05 Werner Lemberg <wl@gnu.org>
+
+ * Add copyright notices to all files which don't have one.
+
+ * docs/license.txt: Renamed to...
+ * docs/LICENSE.TXT: This.
+ * docs/FTL.txt: Renamed to...
+ * docs/FTL.TXT: This.
+ * docs/GPL.txt: Renamed to...
+ * docs/GPL.TXT: This.
+
+ * docs/PATENTS: Slightly reworded. Suggested by Sylvain Beucler
+ <beuc@gnu.org>.
+
2005-06-04 Werner Lemberg <wl@gnu.org>
* include/freetype/ftimage.h (FT_Outline_MoveToFunc,
@@ -5256,7 +5270,7 @@
builds/unix/unixddef.mk, builds/win32/w32-bccd.mk,
builds/win32/w32-dev.mk (BUILD_DIR): Fix path.
- * builds/unix/configure.ac, builds/unic/configure: Updated.
+ * builds/unix/configure.ac, builds/unix/configure: Updated.
* builds/unix/unix-def.in (DISTCLEAN): Add `freetype2.pc'.
2003-06-07 Werner Lemberg <wl@gnu.org>
@@ -11990,6 +12004,17 @@
* Version 2.0 released.
=======================
+----------------------------------------------------------------------------
+
+Copyright 2000, 2001, 2002, 2003, 2004, 2005 by
+David Turner, Robert Wilhelm, and Werner Lemberg.
+
+This file is part of the FreeType project, and may only be used, modified,
+and distributed under the terms of the FreeType project license,
+LICENSE.TXT. By continuing to use, modify, or distribute this file you
+indicate that you have read the license and understand and accept it
+fully.
+
Local Variables:
version-control: never
diff --git a/Jamfile b/Jamfile
index 6edf31e..74e9f6c 100644
--- a/Jamfile
+++ b/Jamfile
@@ -1,5 +1,14 @@
-# FreeType 2 top Jamfile (c) 2001, 2002, 2003, 2004 David Turner
+# FreeType 2 top Jamfile.
#
+# Copyright 2001, 2002, 2003, 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
# The HDRMACRO is already defined in FTJam and is used to add
# the content of certain macros to the list of included header
diff --git a/Jamrules b/Jamrules
index 0b68597..d8d1c7e 100644
--- a/Jamrules
+++ b/Jamrules
@@ -1,5 +1,15 @@
-# FreeType 2 JamRules (c) 2001, 2002, 2003 David Turner
+# FreeType 2 JamRules.
#
+# Copyright 2001, 2002, 2003 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
# This file contains the Jam rules needed to build the FreeType 2 library.
# It is shared by all Jamfiles and is included only once in the build
# process.
diff --git a/Makefile b/Makefile
index e1fbdf2..8caf1f0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
#
-# Copyright 1996-2000 by
+# Copyright 1996-2000, 2002 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
diff --git a/README b/README
index 81740b1..57f6ed6 100644
--- a/README
+++ b/README
@@ -37,3 +37,17 @@
The FreeType Team
+
+----------------------------------------------------------------------
+
+Copyright 2001, 2002, 2003, 2004 by
+David Turner, Robert Wilhelm, and Werner Lemberg.
+
+This file is part of the FreeType project, and may only be used,
+modified, and distributed under the terms of the FreeType project
+license, LICENSE.TXT. By continuing to use, modify, or distribute
+this file you indicate that you have read the license and understand
+and accept it fully.
+
+
+--- end of README ---
diff --git a/README.CVS b/README.CVS
index bf15e65..b1de1ba 100644
--- a/README.CVS
+++ b/README.CVS
@@ -20,3 +20,6 @@ configure script is necessary at all; saying
make
should work on all platforms which have GNU make (or makepp).
+
+
+--- end of README.CVS ---
diff --git a/autogen.sh b/autogen.sh
index acb5268..5339101 100644
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,14 @@
#!/bin/sh
+# Copyright 2005 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
run ()
{
echo "running \`$*'"
diff --git a/builds/dos/dos-wat.mk b/builds/dos/dos-wat.mk
index 0c39e49..c763b16 100644
--- a/builds/dos/dos-wat.mk
+++ b/builds/dos/dos-wat.mk
@@ -3,6 +3,9 @@
#
+# Copyright 2003 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
# This file is part of the FreeType project, and may only be used, modified,
# and distributed under the terms of the FreeType project license,
# LICENSE.TXT. By continuing to use, modify, or distribute this file you
diff --git a/builds/unix/configure.ac b/builds/unix/configure.ac
index feb4e50..3105ff3 100644
--- a/builds/unix/configure.ac
+++ b/builds/unix/configure.ac
@@ -1,6 +1,15 @@
# This file is part of the FreeType project.
#
# Process this file with autoconf to produce a configure script.
+#
+# Copyright 2001, 2002, 2003, 2004, 2005 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
AC_INIT
AC_CONFIG_SRCDIR([ftconfig.in])
diff --git a/builds/unix/freetype-config.in b/builds/unix/freetype-config.in
index c0783e2..16e15e5 100644
--- a/builds/unix/freetype-config.in
+++ b/builds/unix/freetype-config.in
@@ -1,4 +1,13 @@
#! /bin/sh
+#
+# Copyright 2000, 2001, 2002, 2003, 2004, 2005 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
prefix=@prefix@
exec_prefix=@exec_prefix@
diff --git a/builds/unix/freetype2.m4 b/builds/unix/freetype2.m4
index 7424a32..fc2242f 100644
--- a/builds/unix/freetype2.m4
+++ b/builds/unix/freetype2.m4
@@ -1,6 +1,15 @@
# Configure paths for FreeType2
# Marcelo Magallon 2001-10-26, based on gtk.m4 by Owen Taylor
#
+# Copyright 2001, 2003 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+#
# serial 2
# AC_CHECK_FT2([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
diff --git a/builds/unix/ft-munmap.m4 b/builds/unix/ft-munmap.m4
index 0036ffb..68b3361 100644
--- a/builds/unix/ft-munmap.m4
+++ b/builds/unix/ft-munmap.m4
@@ -1,4 +1,13 @@
## FreeType specific autoconf tests
+#
+# Copyright 2002, 2003, 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
# serial 2
diff --git a/configure b/configure
index e8db0c9..3f9c7b3 100644
--- a/configure
+++ b/configure
@@ -1,5 +1,15 @@
#!/bin/sh
#
+# Copyright 2002, 2003, 2004, 2005 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+#
+#
# Call the `configure' script located in `builds/unix'.
#
diff --git a/src/Jamfile b/src/Jamfile
index e4d3575..76ee0f4 100644
--- a/src/Jamfile
+++ b/src/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src Jamfile (c) 2001, 2002 David Turner
+# FreeType 2 src Jamfile
#
+# Copyright 2001, 2002 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) ;
diff --git a/src/autofit/Jamfile b/src/autofit/Jamfile
index 78801b9..c353781 100644
--- a/src/autofit/Jamfile
+++ b/src/autofit/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/autofit Jamfile (c) 2003, 2004, 2005 David Turner
+# FreeType 2 src/autofit Jamfile
#
+# Copyright 2003, 2004, 2005 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP src autofit ;
diff --git a/src/base/Jamfile b/src/base/Jamfile
index b00c7c9..6ac9b63 100644
--- a/src/base/Jamfile
+++ b/src/base/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/base Jamfile (c) 2001, 2002, 2003, 2004 David Turner
+# FreeType 2 src/base Jamfile
#
+# Copyright 2001, 2002, 2003, 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) base ;
diff --git a/src/bdf/Jamfile b/src/bdf/Jamfile
index 8b1714d..da23ccd 100644
--- a/src/bdf/Jamfile
+++ b/src/bdf/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/bdf Jamfile (c) 2002 David Turner
+# FreeType 2 src/bdf Jamfile
#
+# Copyright 2002 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) bdf ;
diff --git a/src/cache/Jamfile b/src/cache/Jamfile
index b269c95..340cff7 100644
--- a/src/cache/Jamfile
+++ b/src/cache/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/cache Jamfile (c) 2001, 2003, 2004 David Turner
+# FreeType 2 src/cache Jamfile
#
+# Copyright 2001, 2003, 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) cache ;
diff --git a/src/cff/Jamfile b/src/cff/Jamfile
index dcf24c8..6d0bb1b 100644
--- a/src/cff/Jamfile
+++ b/src/cff/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/cff Jamfile (c) 2001, 2002 David Turner
+# FreeType 2 src/cff Jamfile
#
+# Copyright 2001, 2002 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) cff ;
diff --git a/src/cid/Jamfile b/src/cid/Jamfile
index a505e3c..ebeaed5 100644
--- a/src/cid/Jamfile
+++ b/src/cid/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/cid Jamfile (c) 2001 David Turner
+# FreeType 2 src/cid Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) cid ;
diff --git a/src/gzip/Jamfile b/src/gzip/Jamfile
index e461cf1..a7aafa0 100644
--- a/src/gzip/Jamfile
+++ b/src/gzip/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/gzip Jamfile (c) 2001 David Turner
+# FreeType 2 src/gzip Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) gzip ;
diff --git a/src/lzw/Jamfile b/src/lzw/Jamfile
index 995cbb9..e9c3c4a 100644
--- a/src/lzw/Jamfile
+++ b/src/lzw/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/lzw Jamfile (C) 2004 David Turner
+# FreeType 2 src/lzw Jamfile
#
+# Copyright 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) lzw ;
diff --git a/src/otvalid/Jamfile b/src/otvalid/Jamfile
index ca650f1..35a14c6 100644
--- a/src/otvalid/Jamfile
+++ b/src/otvalid/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/otvalid Jamfile (c) 2004 Werner Lemberg
+# FreeType 2 src/otvalid Jamfile
#
+# Copyright 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) otvalid ;
diff --git a/src/pcf/Jamfile b/src/pcf/Jamfile
index 3a884f5..752fcac 100644
--- a/src/pcf/Jamfile
+++ b/src/pcf/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/pcf Jamfile (c) 2001, 2003 David Turner
+# FreeType 2 src/pcf Jamfile
#
+# Copyright 2001, 2003 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) pcf ;
diff --git a/src/pfr/Jamfile b/src/pfr/Jamfile
index 4c38a2d..9e2f2b8 100644
--- a/src/pfr/Jamfile
+++ b/src/pfr/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/pfr Jamfile (c) 2002 David Turner
+# FreeType 2 src/pfr Jamfile
#
+# Copyright 2002 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) pfr ;
diff --git a/src/psaux/Jamfile b/src/psaux/Jamfile
index fc834b3..a8c199c 100644
--- a/src/psaux/Jamfile
+++ b/src/psaux/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/psaux Jamfile (c) 2001, 2002 David Turner
+# FreeType 2 src/psaux Jamfile
#
+# Copyright 2001, 2002 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) psaux ;
diff --git a/src/pshinter/Jamfile b/src/pshinter/Jamfile
index ee02a14..769dcc4 100644
--- a/src/pshinter/Jamfile
+++ b/src/pshinter/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/pshinter Jamfile (c) 2001, 2003 David Turner
+# FreeType 2 src/pshinter Jamfile
#
+# Copyright 2001, 2003 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) pshinter ;
diff --git a/src/psnames/Jamfile b/src/psnames/Jamfile
index e75ae1e..d85c1e9 100644
--- a/src/psnames/Jamfile
+++ b/src/psnames/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/psnames Jamfile (c) 2001 David Turner
+# FreeType 2 src/psnames Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) psnames ;
diff --git a/src/raster/Jamfile b/src/raster/Jamfile
index 01b5c0d..f6e4251 100644
--- a/src/raster/Jamfile
+++ b/src/raster/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/raster Jamfile (c) 2001 David Turner
+# FreeType 2 src/raster Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) raster ;
diff --git a/src/sfnt/Jamfile b/src/sfnt/Jamfile
index 03c429a..8fe191f 100644
--- a/src/sfnt/Jamfile
+++ b/src/sfnt/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/sfnt Jamfile (c) 2001, 2002, 2004, 2005 David Turner
+# FreeType 2 src/sfnt Jamfile
#
+# Copyright 2001, 2002, 2004, 2005 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) sfnt ;
diff --git a/src/smooth/Jamfile b/src/smooth/Jamfile
index 5ab9b60..8a792df 100644
--- a/src/smooth/Jamfile
+++ b/src/smooth/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/smooth Jamfile (c) 2001 David Turner
+# FreeType 2 src/smooth Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) smooth ;
diff --git a/src/truetype/Jamfile b/src/truetype/Jamfile
index bb7e05e..a166909 100644
--- a/src/truetype/Jamfile
+++ b/src/truetype/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/truetype Jamfile (c) 2001, 2004 David Turner
+# FreeType 2 src/truetype Jamfile
#
+# Copyright 2001, 2004 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) truetype ;
diff --git a/src/type1/Jamfile b/src/type1/Jamfile
index 4d966f3..8e366ba 100644
--- a/src/type1/Jamfile
+++ b/src/type1/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/type1 Jamfile (c) 2001 David Turner
+# FreeType 2 src/type1 Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) type1 ;
diff --git a/src/type42/Jamfile b/src/type42/Jamfile
index 032ac71..00371d5 100644
--- a/src/type42/Jamfile
+++ b/src/type42/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/type42 Jamfile (c) 2002 David Turner
+# FreeType 2 src/type42 Jamfile
#
+# Copyright 2002 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) type42 ;
diff --git a/src/winfonts/Jamfile b/src/winfonts/Jamfile
index a903f89..71cf567 100644
--- a/src/winfonts/Jamfile
+++ b/src/winfonts/Jamfile
@@ -1,5 +1,13 @@
-# FreeType 2 src/winfonts Jamfile (c) 2001 David Turner
+# FreeType 2 src/winfonts Jamfile
#
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
SubDir FT2_TOP $(FT2_SRC_DIR) winfonts ;
diff --git a/vms_make.com b/vms_make.com
index 7a99f6c..77eb1f4 100644
--- a/vms_make.com
+++ b/vms_make.com
@@ -1,5 +1,15 @@
$! make Freetype2 under OpenVMS
$!
+$! Copyright 2003, 2004 by
+$! David Turner, Robert Wilhelm, and Werner Lemberg.
+$!
+$! This file is part of the FreeType project, and may only be used, modified,
+$! and distributed under the terms of the FreeType project license,
+$! LICENSE.TXT. By continuing to use, modify, or distribute this file you
+$! indicate that you have read the license and understand and accept it
+$! fully.
+$!
+$!
$! External libraries (like Freetype, XPM, etc.) are supported via the
$! config file VMSLIB.DAT. Please check the sample file, which is part of this
$! distribution, for the information you need to provide