cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 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 |
| 8 | PACKAGE_NAME='ImageMagick' |
| 9 | |
| 10 | # |
| 11 | # Package version. This is is the numeric version suffix applied to |
| 12 | # PACKAGE_NAME (e.g. "1.0.0"). |
cristy | d77fe15 | 2011-07-01 23:14:16 +0000 | [diff] [blame] | 13 | PACKAGE_VERSION='7.0.0' |
| 14 | PACKAGE_LIB_VERSION="0x700" |
cristy | 87a7f07 | 2011-07-01 00:08:52 +0000 | [diff] [blame] | 15 | PACKAGE_RELEASE="0" |
cristy | d77fe15 | 2011-07-01 23:14:16 +0000 | [diff] [blame] | 16 | PACKAGE_LIB_VERSION_NUMBER="7,0,0,${PACKAGE_RELEASE}" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 17 | PACKAGE_RELEASE_DATE=`date +%F` |
| 18 | PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION" |
| 19 | |
| 20 | # |
| 21 | # Date of last ChangeLog update |
| 22 | # |
| 23 | PACKAGE_CHANGE_DATE=`awk '/^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]/ { print substr($1,1,4) substr($1,6,2) substr($1,9,2); exit; }' ${srcdir}/ChangeLog` |
| 24 | |
| 25 | # |
| 26 | # Package version addendum. This is an arbitrary suffix (if any) appended |
| 27 | # to the package version. (e.g. "beta1") |
cristy | 15a8878 | 2010-01-31 23:24:49 +0000 | [diff] [blame] | 28 | PACKAGE_VERSION_ADDENDUM="-${PACKAGE_RELEASE}" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 29 | |
| 30 | # |
| 31 | # Libtool library revision control info: See the libtool documentation under |
| 32 | # the heading "Libtool's versioning system" in order to understand the meaning |
| 33 | # of these fields. |
| 34 | # |
| 35 | # Here are a set of rules to help you update your library version |
| 36 | # information: |
| 37 | # |
cristy | bab87c3 | 2010-02-09 20:54:22 +0000 | [diff] [blame] | 38 | # If there is any interface change, increment CURRENT (major). If that |
| 39 | # interface change does not break upward compatibility (i.e. it is an |
cristy | e0488e7 | 2010-12-05 18:49:00 +0000 | [diff] [blame] | 40 | # addition), increment AGE (micro), Otherwise AGE is reset to 0. If CURRENT |
cristy | bab87c3 | 2010-02-09 20:54:22 +0000 | [diff] [blame] | 41 | # has changed, REVISION (minor) is set to 0, otherwise REVISION is |
| 42 | # incremented. |
| 43 | |
cristy | d77fe15 | 2011-07-01 23:14:16 +0000 | [diff] [blame] | 44 | MAGICK_LIBRARY_CURRENT=5 |
| 45 | MAGICK_LIBRARY_REVISION=0 |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 46 | MAGICK_LIBRARY_AGE=0 |