|
@@ -4,24 +4,52 @@
|
|
#
|
|
#
|
|
################################################################################
|
|
################################################################################
|
|
|
|
|
|
-TCL_VERSION_MAJOR = 8.4
|
|
|
|
-TCL_VERSION = $(TCL_VERSION_MAJOR).19
|
|
|
|
|
|
+TCL_VERSION_MAJOR = 8.6
|
|
|
|
+TCL_VERSION = $(TCL_VERSION_MAJOR).1
|
|
TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
|
|
TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
|
|
TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION)
|
|
TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION)
|
|
TCL_LICENSE = tcl license
|
|
TCL_LICENSE = tcl license
|
|
TCL_LICENSE_FILES = license.terms
|
|
TCL_LICENSE_FILES = license.terms
|
|
TCL_SUBDIR = unix
|
|
TCL_SUBDIR = unix
|
|
TCL_INSTALL_STAGING = YES
|
|
TCL_INSTALL_STAGING = YES
|
|
|
|
+TCL_AUTORECONF = YES
|
|
|
|
+
|
|
|
|
+# Note that --with-system-sqlite will only make a difference
|
|
|
|
+# in the sqlite package (which gets removed if sqlite not
|
|
|
|
+# configured). Don't need to worry about conditionally including
|
|
|
|
+# it in the configure options
|
|
TCL_CONF_OPT = \
|
|
TCL_CONF_OPT = \
|
|
--disable-symbols \
|
|
--disable-symbols \
|
|
--disable-langinfo \
|
|
--disable-langinfo \
|
|
- --disable-framework
|
|
|
|
|
|
+ --disable-framework \
|
|
|
|
+ --with-system-sqlite
|
|
|
|
|
|
HOST_TCL_CONF_OPT = \
|
|
HOST_TCL_CONF_OPT = \
|
|
--disable-symbols \
|
|
--disable-symbols \
|
|
--disable-langinfo \
|
|
--disable-langinfo \
|
|
--disable-framework
|
|
--disable-framework
|
|
|
|
|
|
|
|
+# I haven't found a good way to force pkgs to not build
|
|
|
|
+# or configure without just removing the entire pkg directory.
|
|
|
|
+define HOST_TCL_REMOVE_PACKAGES
|
|
|
|
+ rm -fr $(@D)/pkgs/sqlite3.8.0 \
|
|
|
|
+ $(@D)/pkgs/tdbc1.0.0 \
|
|
|
|
+ $(@D)/pkgs/tdbcmysql1.0.0 \
|
|
|
|
+ $(@D)/pkgs/tdbcodbc1.0.0 \
|
|
|
|
+ $(@D)/pkgs/tdbcpostgres1.0.0 \
|
|
|
|
+ $(@D)/pkgs/tdbcsqlite3-1.0.0
|
|
|
|
+endef
|
|
|
|
+HOST_TCL_PRE_CONFIGURE_HOOKS += HOST_TCL_REMOVE_PACKAGES
|
|
|
|
+define TCL_REMOVE_PACKAGES
|
|
|
|
+ rm -fr $(if $(BR2_PACKAGE_SQLITE),,$(@D)/pkgs/sqlite3.8.0) \
|
|
|
|
+ $(if $(BR2_PACKAGE_SQLITE),,$(@D)/pkgs/tdbc1.0.0) \
|
|
|
|
+ $(@D)/pkgs/tdbcmysql1.0.0 \
|
|
|
|
+ $(@D)/pkgs/tdbcodbc1.0.0 \
|
|
|
|
+ $(@D)/pkgs/tdbcpostgres1.0.0 \
|
|
|
|
+ $(if $(BR2_PACKAGE_SQLITE),,$(@D)/pkgs/tdbcsqlite3-1.0.0)
|
|
|
|
+endef
|
|
|
|
+TCL_PRE_CONFIGURE_HOOKS += TCL_REMOVE_PACKAGES
|
|
|
|
+
|
|
ifeq ($(BR2_PACKAGE_TCL_DEL_ENCODINGS),y)
|
|
ifeq ($(BR2_PACKAGE_TCL_DEL_ENCODINGS),y)
|
|
define TCL_REMOVE_ENCODINGS
|
|
define TCL_REMOVE_ENCODINGS
|
|
rm -rf $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/encoding/*
|
|
rm -rf $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/encoding/*
|
|
@@ -41,12 +69,20 @@ endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_SYMLINK_TCLSH
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_SYMLINK_TCLSH
|
|
endif
|
|
endif
|
|
|
|
|
|
-# library get installed read only, so strip fails
|
|
|
|
-define TCL_FIXUP_RO_LIB
|
|
|
|
- chmod +w $(TARGET_DIR)/usr/lib/libtcl*
|
|
|
|
|
|
+# Until someone needs it, we don't handle locale installation. tcl has
|
|
|
|
+# a complicated method of translating LANG-style locale names into its internal
|
|
|
|
+# .msg name which makes it difficult to save the correct locales per the
|
|
|
|
+# configured whitelist.
|
|
|
|
+define TCL_REMOVE_EXTRA
|
|
|
|
+ rm -fr $(TARGET_DIR)/usr/lib/tclConfig.sh \
|
|
|
|
+ $(TARGET_DIR)/usr/lib/tclooConfig.sh \
|
|
|
|
+ $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/tclAppInit.c \
|
|
|
|
+ $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/msgs
|
|
endef
|
|
endef
|
|
|
|
+TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_EXTRA
|
|
|
|
|
|
-TCL_POST_INSTALL_TARGET_HOOKS += TCL_FIXUP_RO_LIB
|
|
|
|
|
|
+TCL_DEPENDENCIES = $(if $(BR2_PACKAGE_SQLITE),sqlite)
|
|
|
|
+HOST_TCL_DEPENDENCIES =
|
|
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
$(eval $(host-autotools-package))
|