misc/libfreetype/docs/release
author koda
Mon, 25 Apr 2011 01:46:54 +0200
changeset 5172 88f2e05288ba
permissions -rw-r--r--
aaand let's add freetype as well while we are at it other smaller changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
How to prepare a new release
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
----------------------------
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
. include/freetype/freetype.h:  Update FREETYPE_MAJOR, FREETYPE_MINOR,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
  and FREETYPE_PATCH.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
. Update version numbers in all files where necessary (for example, do
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
  a grep for both `2.3.1' and `231' for release 2.3.1).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
. builds/unix/configure.raw: Update `version_info'.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
. docs/CHANGES: Document differences to last release.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
. README: Update.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
. docs/VERSION.DLL: Document changed `version_info'.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
. ChangeLog:   Announce  new  release   (both  in  the  freetype2  and
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
  freetype2-demos modules).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
. Clone the git archive to another directory with
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
    git clone -l -s . ../freetype2.test
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
  or something like this and run
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
    make distclean; make devel; make
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
    make distclean; make devel; make multi
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
    make distclean; make devel CC=g++; make CC=g++
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
    make distclean; make devel CC=g++; make multi CC=g++
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
    sh autogen.sh
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
    make distclean; ./configure; make
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
    make distclean; ./configure CC=g++; make
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
  in the cloned repository to test compilation with both gcc and g++.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
. Test C++ compilation  for freetype2-demos too  (using `git clone' as
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
  above).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
. Run  src/tools/chktrcmp.py  and check  that there  are no  undefined
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
  trace_XXXX macros.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
. Tag the git repositories (freetype2, freetype2-demos) with
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
    git tag VER-<version> -m "" -u <committer>
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
  and push the tags with
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
    git push --tags
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
  TODO: Tag the home page CVS on savannah.nongnu.org.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
. Say `make  dist' in both the  freetype2 and freetype2-demos  modules
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
  to generate the .tar.gz, .tar.bz2, and .zip files.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
. Create     the     doc    bundles    (freetype-doc-<version>.tar.gz,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
  freetype-doc-<version>.tar.bz2,    ftdoc<version>.zip).    This   is
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
  everything below
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
    freetype.freedesktop.org:/srv/freetype.freedesktop.org/www/freetype2/docs/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
  except the `reference' subdirectory.   Do *not* use option `-l' from
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
  zip!
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
. Run the following script (with updated `$VERSION', `$SAVANNAH_USER',
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
  and $SOURCEFORGE_USER  variables) to sign and upload the  bundles to
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
  both Savannah and SourceForge.  The signing code has been taken from
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
  the `gnupload' script (part of the automake bundle).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
    #!/bin/sh
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
    VERSION=2.3.11
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
    SAVANNAH_USER=wl
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
    SOURCEFORGE_USER=wlemb
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
    #####################################################################
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
    GPG='/usr/bin/gpg --batch --no-tty'
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
    version=`echo $VERSION | sed "s/\\.//g"`
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
    FREETYPE_PACKAGES="freetype-$VERSION.tar.gz \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
                       freetype-$VERSION.tar.bz2 \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
                       ft$version.zip"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
    FT2DEMOS_PACKAGES="ft2demos-$VERSION.tar.gz \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
                       ft2demos-$VERSION.tar.bz2 \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
                       ftdmo$version.zip"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
    FTDOC_PACKAGES="freetype-doc-$VERSION.tar.gz \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
                    freetype-doc-$VERSION.tar.bz2 \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
                    ftdoc$version.zip"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
    PACKAGE_LIST="$FREETYPE_PACKAGES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
                  $FT2DEMOS_PACKAGES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
                  $FTDOC_PACKAGES"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
    set -e
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
    unset passphrase
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
    PATH=/empty echo -n "Enter GPG passphrase: "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
    stty -echo
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
    read -r passphrase
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
    stty echo
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
    echo
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
    for f in $PACKAGE_LIST; do
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
      if test ! -f $f; then
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   108
        echo "$0: Cannot find \`$f'" 1>&2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   109
        exit 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   110
      else
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   111
        :
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   112
      fi
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   113
    done
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   114
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   115
    for f in $PACKAGE_LIST; do
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   116
      echo "Signing $f..."
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   117
      rm -f $f.sig
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   118
      echo $passphrase | $GPG --passphrase-fd 0 -ba -o $f.sig $f
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   119
    done
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   121
    FREETYPE_SIGNATURES=
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   122
    for i in $FREETYPE_PACKAGES; do
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   123
      FREETYPE_SIGNATURES="$FREETYPE_SIGNATURES $i.sig"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   124
    done
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   125
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   126
    FT2DEMOS_SIGNATURES=
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   127
    for i in $FT2DEMOS_PACKAGES; do
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   128
      FT2DEMOS_SIGNATURES="$FT2DEMOS_SIGNATURES $i.sig"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   129
    done
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   130
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   131
    FTDOC_SIGNATURES=
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   132
    for i in $FTDOC_PACKAGES; do
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   133
      FTDOC_SIGNATURES="$FTDOC_SIGNATURES $i.sig"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   134
    done
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   135
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   136
    SIGNATURE_LIST="$FREETYPE_SIGNATURES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   137
                    $FT2DEMOS_SIGNATURES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   138
                    $FTDOC_SIGNATURES"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   139
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   140
    scp $PACKAGE_LIST $SIGNATURE_LIST \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   141
      $SAVANNAH_USER@dl.sv.nongnu.org:/releases/freetype/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   142
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   143
    rsync -avP -e ssh $FREETYPE_PACKAGES $FREETYPE_SIGNATURES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   144
      $SOURCEFORGE_USER,freetype@frs.sf.net:/home/frs/project/f/fr/freetype/freetype2/$VERSION/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   145
    rsync -avP -e ssh $FT2DEMOS_PACKAGES $FT2DEMOS_SIGNATURES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   146
      $SOURCEFORGE_USER,freetype@frs.sf.net:/home/frs/project/f/fr/freetype/freetype-demos/$VERSION/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   147
    rsync -avP -e ssh $FTDOC_PACKAGES $FTDOC_SIGNATURES \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   148
      $SOURCEFORGE_USER,freetype@frs.sf.net:/home/frs/project/f/fr/freetype/freetype-docs/$VERSION/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   149
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   150
    # EOF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   151
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   152
. While files on savannah.gnu.org are automatically moved to the right
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   153
  directory, it must be done manually on SourceForge.  Do that now.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   154
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   155
. Update the FreeType release notes on SourceForge.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   156
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   157
. Copy the reference files (generated by `make dist') to
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   158
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   159
    freetype.freedesktop.org:/srv/freetype.freedesktop.org/www/freetype2/docs/reference
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   161
  and
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   162
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   163
    shell.sf.net:/home/groups/f/fr/freetype/htdocs/freetype2/docs/reference
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   164
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   165
  TODO: Create  FreeType  home  page  CVS  on savannah.nongnu.org  and
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   166
        update it accordingly.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   167
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   168
        Write script to automatically do this.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   169
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   170
        Mirror FreeType's savannah home page everywhere.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   171
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   172
. Update
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   174
    freetype.freedesktop.org:/srv/freetype.freedesktop.org/www/index2.html
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   175
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   176
  and copy it to
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   177
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   178
    shell.sf.net:/home/groups/f/fr/freetype/htdocs/index2.html
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   179
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   180
. Announce new release on freetype-announce@nongnu.org and to relevant
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   181
  newsgroups.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   182
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   183
----------------------------------------------------------------------
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   184
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   185
Copyright 2003, 2005, 2006, 2007, 2009 by
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   186
David Turner, Robert Wilhelm, and Werner Lemberg.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   187
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   188
This  file is  part of  the FreeType  project, and  may only  be used,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   189
modified,  and distributed  under the  terms of  the  FreeType project
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   190
license,  LICENSE.TXT.  By  continuing to  use, modify,  or distribute
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   191
this file you  indicate that you have read  the license and understand
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   192
and accept it fully.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   193
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   194
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   195
--- end of release ---