665e13c85e
Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# jimtcl
|
|
#
|
|
################################################################################
|
|
|
|
JIMTCL_VERSION = 0.75
|
|
JIMTCL_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/j/jimtcl
|
|
JIMTCL_SOURCE = jimtcl_$(JIMTCL_VERSION).orig.tar.xz
|
|
JIMTCL_INSTALL_STAGING = YES
|
|
JIMTCL_LICENSE = BSD-2c
|
|
JIMTCL_LICENSE_FILES = LICENSE
|
|
|
|
JIMTCL_HEADERS_TO_INSTALL = \
|
|
jim.h \
|
|
jim-eventloop.h \
|
|
jim-signal.h \
|
|
jim-subcmd.h \
|
|
jim-win32compat.h \
|
|
jim-config.h \
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL),)
|
|
define JIMTCL_LINK_TCLSH
|
|
ln -sf jimsh $(TARGET_DIR)/usr/bin/tclsh
|
|
endef
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
JIMTCL_SHARED =
|
|
JIMTCL_LIB = a
|
|
JIMTCL_INSTALL_LIB =
|
|
else
|
|
JIMTCL_SHARED = --shared
|
|
JIMTCL_LIB = so.$(JIMTCL_VERSION)
|
|
JIMTCL_INSTALL_LIB = $(INSTALL) -D $(@D)/libjim.$(JIMTCL_LIB) \
|
|
$(TARGET_DIR)/usr/lib/libjim.$(JIMTCL_LIB); \
|
|
ln -s libjim.$(JIMTCL_LIB) $(TARGET_DIR)/usr/lib/libjim.so
|
|
endif
|
|
|
|
define JIMTCL_CONFIGURE_CMDS
|
|
(cd $(@D); \
|
|
$(TARGET_CONFIGURE_OPTS) CCACHE=none \
|
|
./configure --prefix=/usr \
|
|
$(JIMTCL_SHARED) \
|
|
)
|
|
endef
|
|
|
|
define JIMTCL_BUILD_CMDS
|
|
$(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define JIMTCL_INSTALL_STAGING_CMDS
|
|
for i in $(JIMTCL_HEADERS_TO_INSTALL); do \
|
|
cp -a $(@D)/$$i $(STAGING_DIR)/usr/include/ || exit 1 ; \
|
|
done; \
|
|
$(INSTALL) -D $(@D)/libjim.$(JIMTCL_LIB) $(STAGING_DIR)/usr/lib/libjim.$(JIMTCL_LIB);
|
|
ln -s libjim.$(JIMTCL_LIB) $(STAGING_DIR)/usr/lib/libjim.so
|
|
endef
|
|
|
|
define JIMTCL_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/jimsh $(TARGET_DIR)/usr/bin/jimsh
|
|
$(JIMTCL_INSTALL_LIB)
|
|
$(JIMTCL_LINK_TCLSH)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|