Index: build/make-kit-netbsd-amd64 ================================================================== --- build/make-kit-netbsd-amd64 +++ build/make-kit-netbsd-amd64 @@ -1,6 +1,6 @@ #! /bin/sh -CROSS="x86_64-unknown-netbsd5" +CROSS="x86_64-unknown-netbsd8" export CROSS ./build/make-kit-crosscompile "$@" --enable-64bit Index: build/make-kit-netbsd-i386 ================================================================== --- build/make-kit-netbsd-i386 +++ build/make-kit-netbsd-i386 @@ -1,7 +1,7 @@ #! /bin/sh -CROSS="x86_64-unknown-netbsd5" +CROSS="x86_64-unknown-netbsd8" CC_ADD="-m32" export CROSS CC_ADD ./build/make-kit-crosscompile "$@" DELETED tcl/patchscripts/win32-32bit-timet.sh Index: tcl/patchscripts/win32-32bit-timet.sh ================================================================== --- tcl/patchscripts/win32-32bit-timet.sh +++ tcl/patchscripts/win32-32bit-timet.sh @@ -1,14 +0,0 @@ -#! /usr/bin/env bash - -# Do not run on Win32 -if echo '_WIN64' | ${CC:-cc} -E - | grep '^_WIN64$' >/dev/null; then - ( - echo '#ifndef _USE_32BIT_TIME_T' - echo '#define _USE_32BIT_TIME_T 1' - echo '#endif' - cat generic/tcl.h - ) > generic/tcl.h.new - cat generic/tcl.h.new > generic/tcl.h -fi - -exit 0 Index: tcllux/build.sh ================================================================== --- tcllux/build.sh +++ tcllux/build.sh @@ -1,19 +1,19 @@ #! /usr/bin/env bash # BuildCompatible: KitCreator -version='0.4' +version='0.5' url="https://chiselapp.com/user/stwo/repository/tcllux/uv/tcllux-${version}.tar.gz" -sha256='c4fecf6852b35089a8f6d0e1a6fe8feb70c5f7e9f4eb91ad6b4caa9c65c211fd' +sha256='c5100f784b0790f878f75dbdadc109f69e3cee536eb9376785a360284345d4fe' pkg_ignore_opts=(--enable-threads --disable-threads --enable-kit-storage) pkg_no_support_for_static='1' -function postinstall() { +function postinstall_() { ( cd "${installdir}/lib" || exit 1 if [ -d 'tcl' ]; then mv tcl/* . rmdir tcl fi ) || return 1 }