root / ImageMagick / branches / ImageMagick-6.3.8 / version.sh

Revision 9934, 1.8 kB (checked in by cristy, 6 months ago)
Line 
1#
2# Package name and versioning information for ImageMagick.
3#
4# This file is sourced by a Bourne shell (/bin/sh) script so it must
5# observe Bourne shell syntax.
6#
7# Package base name
8PACKAGE_NAME='ImageMagick'
9
10#
11# Package version.  This is is the numeric version suffix applied to
12# PACKAGE_NAME (e.g. "1.0.0").
13PACKAGE_VERSION='6.3.8'
14PACKAGE_LIB_VERSION="0x638"
15PACKAGE_LIB_VERSION_NUMBER="6,3,8,11"
16PACKAGE_RELEASE_DATE=`date +%x`
17
18#
19# Package version addendum.  This is an arbitrary suffix (if any) appended
20# to the package version. (e.g. "beta1") `echo -snapshot-``date '+%g%m%d'`
21CHANGE_DATE=`find ${srcdir}/ChangeLog -printf '%Ty%Tm%Td%\n' 2> /dev/null`
22if test -n "$CHANGE_DATE"
23then
24  PACKAGE_VERSION_ADDENDUM=""
25else
26  PACKAGE_VERSION_ADDENDUM=""
27fi
28
29#
30# Libtool library revision control info: See the libtool documentation under
31# the heading "Libtool's versioning system" in order to understand the meaning
32# of these fields.
33#
34# Here are a set of rules to help you update your library version
35# information:
36#
37#  1. Start with version information of `0:0:0' for each libtool library.
38#  2. Update the version information only immediately before a public
39#     release of your software. More frequent updates are unnecessary, and
40#     only guarantee that the current interface number gets larger faster.
41#  3. If the library source code has changed at all since the last update,
42#     then increment revision (`c:r:a' becomes `c:r+1:a').
43#  4. If any interfaces have been added, removed, or changed since the last
44#     update, increment current, and set revision to 0.
45#  5. If any interfaces have been added since the last public release, then
46#     increment age.
47#  6. If any interfaces have been removed since the last public release,
48#     then set age to 0.
49LIBRARY_CURRENT=1
50LIBRARY_REVISION=0
51LIBRARY_AGE=0
Note: See TracBrowser for help on using the browser.