aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authordb <db@FreeBSD.org>2007-09-29 05:49:09 +0800
committerdb <db@FreeBSD.org>2007-09-29 05:49:09 +0800
commit80b97c5d28310c88e3543f1608ffaaac8a120e6c (patch)
treedd37c561314230469d1fa93c3e21d1c6f460bcaf /devel
parent1cb757d75ebce9ddf78a02ced91e6cb8b6cf2a0e (diff)
downloadfreebsd-ports-gnome-80b97c5d28310c88e3543f1608ffaaac8a120e6c.tar.gz
freebsd-ports-gnome-80b97c5d28310c88e3543f1608ffaaac8a120e6c.tar.zst
freebsd-ports-gnome-80b97c5d28310c88e3543f1608ffaaac8a120e6c.zip
- Fix problem with build of port reported by linimon Sept 28 2007
Basically the port was relying on TCL_PACKAGE_PATH in tcllib/tclConfig.sh to be a single path with no trailing spaces. As of tcl84, TCL_PACKAGE_PATH can be a list. I patched e4graph configure to use TCL_PREFIX/lib instead. Discussed with: linimon
Diffstat (limited to 'devel')
-rw-r--r--devel/e4graph/files/patch_all-configure19
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/e4graph/files/patch_all-configure b/devel/e4graph/files/patch_all-configure
new file mode 100644
index 000000000000..117176d35620
--- /dev/null
+++ b/devel/e4graph/files/patch_all-configure
@@ -0,0 +1,19 @@
+--- all/configure.orig Fri Mar 5 20:56:14 2004
++++ all/configure Thu Sep 27 15:48:56 2007
+@@ -4478,12 +4478,16 @@
+ TCL_INC=${TCL_INCLUDE_SPEC}
+ TCL_STB=${TCL_STUB_LIB_SPEC}
+ TCL_PKG=${TCL_PACKAGE_PATH}/tcl${TCL_VERSION}
++ echo TCL_PACKAGE_PATH = "\"${TCL_PACKAGE_PATH}\""
++ echo TCL_VERSION = "\"${TCL_VERSION}\""
++ echo TCL_PKG = "\"${TCL_PKG}\""
+ echo "$ac_t""${TCL_INCLUDE_SPEC}" 1>&6
+ else
+ TCL_LIB="# No Tcl library found"
+ TCL_INC="# No tcl.h found"
+ TCL_STB="# No libtclstubs.a found"
+ TCL_PKG="# No TCL_PACKAGE_PATH found"
++ echo TCL_PKG = "\"${TCL_PKG}\""
+ echo "$ac_t""not found" 1>&6
+ fi
+