Overview
Comment: | Fixed issue with dbus-tcl putting files in weird places Updated to clean-up "out" directories up run |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
32e6a2e4929de61e7cceb9fc20257ebf |
User & Date: | rkeene on 2011-07-06 02:15:29 |
Other Links: | manifest | tags |
Context
2011-07-06
| ||
03:08 | Updated to support skipping re-building of Tcl Added tclreadline package check-in: 9475a0176c user: rkeene tags: trunk | |
02:15 | Fixed issue with dbus-tcl putting files in weird places Updated to clean-up "out" directories up run check-in: 32e6a2e492 user: rkeene tags: trunk | |
02:03 | Updated build procedure to use a common handler check-in: 6305420046 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build_all.sh from [9154479c58] to [d1d316a9e2].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - + + | fi export CLEANONLY DISTCLEAN CONFIGUREEXTRA="$@" export CONFIGUREEXTRA # Determine path to "tclConfig.sh" |
︙ |
Modified server/buildpkgs/dbus-tcl/build.sh from [1141247fa7] to [1cea46cb5a].
︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | + + | bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 ${MAKE:-make} install-binaries PKG_DIR='' || exit 1 rm -f "${PLATDIR}"/*.a mv "${PLATDIR}"/dbus-tcl/* "${PLATDIR}"/ rm -rf "${PLATDIR}"/dbus-tcl ) || exit 1 # Create metadata ../create_teapot "${PLATDIR}/teapot.txt" "dbus-tcl" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.5" "The DBus-Tcl project provides a Tcl interface to the dbus message bus system. It contains packages that allow Tcl programs to send and receive dbus signals, as well as invoke and respond to dbus method calls. http://dbus-tcl.sourceforge.net/" exit 0 |