aboutsummaryrefslogtreecommitdiff
path: root/deskutils/ical
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2002-11-15 07:03:00 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2002-11-15 07:03:00 +0000
commit07c05f9dcf4d0f1e2804c4b84b877dfc9482cba5 (patch)
treedc392f70807d0e7703be110343c938c8e28353f7 /deskutils/ical
parentdc1d9dadaaabb07e50cd8a1f5244556391740f4a (diff)
downloadports-07c05f9dcf4d0f1e2804c4b84b877dfc9482cba5.tar.gz
ports-07c05f9dcf4d0f1e2804c4b84b877dfc9482cba5.zip
Make desktutils/ical building again.
This was a tricky thing and I suspect this is caused by the new tcl83 package rolled out. What happens is that lib/tcl8.3/tclConfig.sh has this line in it: TCL_LIB_FILE='libtcl83${TCL_DBGX}.so.1' The single ticks TCL_DBGX not to be expanded, that's okay. But the configure-script didn't evaluate the variable once it got it from the tclConfig.sh script. Noticed by: bento
Notes
Notes: svn path=/head/; revision=70151
Diffstat (limited to 'deskutils/ical')
-rw-r--r--deskutils/ical/files/patch-configure11
1 files changed, 11 insertions, 0 deletions
diff --git a/deskutils/ical/files/patch-configure b/deskutils/ical/files/patch-configure
new file mode 100644
index 000000000000..57a368d08057
--- /dev/null
+++ b/deskutils/ical/files/patch-configure
@@ -0,0 +1,11 @@
+--- configure.orig Fri Nov 15 17:59:05 2002
++++ configure Fri Nov 15 17:59:20 2002
+@@ -1327,6 +1327,8 @@
+ #### Load the Tcl/Tk configuration files
+ . $tclconfig/tclConfig.sh
+ . $tkconfig/tkConfig.sh
++TCL_LIB_FILE=`eval "echo ${TCL_LIB_FILE}"`
++TK_LIB_FILE=`eval "echo ${TK_LIB_FILE}"`
+
+ if test -z "$TCL_EXEC_PREFIX"; then TCL_EXEC_PREFIX="$TCL_PREFIX"; fi
+ if test -z "$TK_EXEC_PREFIX"; then TK_EXEC_PREFIX="$TK_PREFIX"; fi