# HG changeset patch
# User David Kirkby <david.kirkby@onetel.net>
# Date 1282862168 -3600
# Node ID db6e4a8c74d8bb6846d79269dccfdf1f44958e22
# Parent c91f30ba571d12cf29edae1c4de37eb8be3d7bbc
#9603 Use $MAKE instead of 'make' to speed up parallel builds.
diff -r c91f30ba571d -r db6e4a8c74d8 SPKG.txt
a
|
b
|
|
18 | 18 | * None for the purposes of Sage, but in general gettext. |
19 | 19 | |
20 | 20 | == Special Update/Build Instructions == |
21 | | * None |
| 21 | * None, other than anyone updating this package should be familiar with how |
| 22 | to write shell scripts. |
22 | 23 | |
23 | 24 | == Changelog == |
24 | 25 | |
25 | 26 | === iconv-1.13.1.p3 (David Kirkby, August 10th, 2010) === |
26 | | * No longer assume bash is in /bin, as it is not on HP-UX or AIX. |
27 | | Instead use "#!/usr/bin/env bash", as suggested in the |
28 | | Sage Developers Guide. |
29 | | * Install iconv on HP-UX in addition to the two platforms iconv was |
30 | | previously installed on (Solaris and Cygwin). |
31 | | * Additionally force make-check to execute on HP-UX. |
| 27 | * Use '$MAKE' instead of 'make' in spkg-install and spkg-check |
| 28 | to enable parallel builds. |
32 | 29 | * Change the format of the tests in spkg-install and |
33 | 30 | spkg-check to be a little clearer. |
34 | 31 | * Add a few extra comments. |
… |
… |
|
39 | 36 | * Added the "Upstream Contact" section to SPKG.txt |
40 | 37 | * Changed the "Special Update/Build Instructions" to be "none", |
41 | 38 | as what was written before was confusing. |
| 39 | * Install iconv on HP-UX in addition to the two platforms iconv was |
| 40 | previously installed on (Solaris and Cygwin). |
| 41 | * Additionally force make-check to execute on HP-UX. |
| 42 | * No longer assume bash is in /bin, as it is not on HP-UX or AIX. |
| 43 | Instead use "#!/usr/bin/env bash", as suggested in the |
| 44 | Sage Developers Guide. |
42 | 45 | |
43 | 46 | === iconv-1.13.1.p2 (John Palmieri, March 31st 2010) === |
44 | 47 | * spkg-check: only run 'make check' on Solaris and Cygwin. |
diff -r c91f30ba571d -r db6e4a8c74d8 spkg-check
a
|
b
|
|
22 | 22 | |
23 | 23 | cd src |
24 | 24 | |
25 | | make check |
| 25 | $MAKE check |
26 | 26 | |
27 | 27 | if [ $? -ne 0 ]; then |
28 | 28 | echo "Error encountered while running the iconv test-suite ... exiting" |
diff -r c91f30ba571d -r db6e4a8c74d8 spkg-install
a
|
b
|
|
38 | 38 | exit 1 |
39 | 39 | fi |
40 | 40 | |
41 | | make |
| 41 | $MAKE |
42 | 42 | if [ $? -ne 0 ]; then |
43 | 43 | echo "Error building iconv" |
44 | 44 | exit 1 |
45 | 45 | fi |
46 | 46 | |
47 | | make install |
| 47 | $MAKE install |
48 | 48 | if [ $? -ne 0 ]; then |
49 | 49 | echo "Error installing iconv" |
50 | 50 | exit 1 |