Overview
| Comment: | Added UDP package |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bc4f6068e4de6703aea5b0cf62823c27 |
| User & Date: | rkeene on 2011-07-22 18:35:21 |
| Other Links: | manifest | tags |
Context
|
2011-07-22
| ||
| 18:48 | Fixed bug in "udp" build check-in: 4788b6cc82 user: rkeene tags: trunk | |
| 18:35 | Added UDP package check-in: bc4f6068e4 user: rkeene tags: trunk | |
|
2011-07-20
| ||
| 00:43 | Minor clean-up check-in: dfe475c779 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [95e2580da5] to [d6ed3f72ed].
| ︙ | ︙ | |||
56 57 58 59 60 61 62 63 64 | server/buildpkgs/tdom/src/* server/buildpkgs/tls/build server/buildpkgs/tls/build/* server/buildpkgs/tls/out server/buildpkgs/tls/out/* server/buildpkgs/tls/src server/buildpkgs/tls/src/* server/pkgs server/pkgs/* | > > > > > > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | server/buildpkgs/tdom/src/* server/buildpkgs/tls/build server/buildpkgs/tls/build/* server/buildpkgs/tls/out server/buildpkgs/tls/out/* server/buildpkgs/tls/src server/buildpkgs/tls/src/* server/buildpkgs/udp/build server/buildpkgs/udp/build/* server/buildpkgs/udp/out server/buildpkgs/udp/out/* server/buildpkgs/udp/src server/buildpkgs/udp/src/* server/pkgs server/pkgs/* |
Added server/buildpkgs/udp/build.sh version [d6d1c5319e].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
#! /bin/bash
# Define parameters
VERS=1.0.8
SRC="src/tcludp-${VERS}.tar.gz"
SRCURL="http://sourceforge.net/projects/tcludp/files/tcludp/${VERS}/tcludp-${VERS}.tar.gz/download"
BUILDDIR="tcludp-${VERS}"
export VERS SRC SRCURL BUILDDIR
# Load common functions
source ../common.sh
# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'
# Download source
download_src
# Build package
(
rm -rf build
mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null
mkdir build
cd build/ || exit 1
gzip -dc "../${SRC}" | tar -xf -
cd "${BUILDDIR}" || exit 1
bash ./configure --enable-shared --enable-threads --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
) || exit 1
# Create metadata
../create_teapot "${PLATDIR}/teapot.txt" "udp" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "The TclUDP package provides Tcl with UDP sockets on Windows and UNIX-like systems. It supports multicast and binary data."
exit 0
|