Differences From Artifact [06accdf118]:
- Executable file server/buildpkgs/dict/build.sh — part of check-in [c0fd75de7e] at 2010-02-11 13:49:41 on branch trunk — Added the ability to specify a PLATFORM (defaults to auto-detect) Disabled building of binary packages when PLATFORM is "tcl" Added building Tcllib if PLATFORM is "tcl" (user: rkeene, size: 1317) [annotate] [blame] [check-ins using]
To Artifact [ee8fedb377]:
- Executable file server/buildpkgs/dict/build.sh — part of check-in [d9990833ed] at 2011-03-30 16:07:17 on branch trunk — Added DBUS-Tcl Updated build_all to allow only building some Updated build_all to build Tcl 8.5 by default Updated the "dict" package to not attempt to build if not using Tcl 8.4 (user: rkeene, size: 1432) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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 | + + + + + + + + + | #! /bin/bash if [ ! -x "../platform" ]; then echo "No platform script found, aborting." >&2 exit 1 fi if [ "${PLATFORM}" = "tcl" ]; then rm -rf out exit 0 fi # We only do anything on Tcl 8.4.x if echo "${TCLVERS}" | grep '^8\.4\.'; then true else rm -rf out exit 0 fi VERS=8.5.2 SRC="src/tclDict-${VERS}.tar.gz" SRCURL="http://pascal.scheffers.net/software/tclDict-${VERS}.tar.gz" BUILDDIR="tclDict-${VERS}" |
︙ |