7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
66 lines
2.0 KiB
Makefile
66 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# c-icap
|
|
#
|
|
################################################################################
|
|
|
|
C_ICAP_VERSION = 0.3.5
|
|
C_ICAP_SOURCE = c_icap-$(C_ICAP_VERSION).tar.gz
|
|
C_ICAP_SITE = http://downloads.sourceforge.net/c-icap
|
|
C_ICAP_LICENSE = LGPLv2.1+
|
|
C_ICAP_LICENSE_FILES = COPYING
|
|
C_ICAP_INSTALL_STAGING = YES
|
|
C_ICAP_CONFIG_SCRIPTS = c-icap-config c-icap-libicapapi-config
|
|
C_ICAP_CONF_OPTS = \
|
|
--with-process-mutexes=posix \
|
|
--without-ldap \
|
|
--without-perl \
|
|
--enable-large-files \
|
|
--enable-ipv6
|
|
|
|
ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
|
|
C_ICAP_CONF_OPTS += --with-berkeleydb
|
|
C_ICAP_DEPENDENCIES += berkeleydb
|
|
else
|
|
C_ICAP_CONF_OPTS += --without-berkeleydb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
C_ICAP_CONF_OPTS += --with-bzip2
|
|
C_ICAP_DEPENDENCIES += bzip2
|
|
else
|
|
C_ICAP_CONF_OPTS += --without-bzip2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
C_ICAP_CONF_OPTS += --with-zlib
|
|
C_ICAP_DEPENDENCIES += zlib
|
|
else
|
|
C_ICAP_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
define C_ICAP_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/c-icap/S96cicap $(TARGET_DIR)/etc/init.d/S96cicap
|
|
endef
|
|
|
|
# Tweak the installation:
|
|
# - Removed unneeded sample configuration files (c-icap.*.default),
|
|
# since some real ones are also installed
|
|
# - Tweak some paths in the c-icap.conf configuration file
|
|
# - Tweak the -config scripts, because the generic
|
|
# <pkg>_CONFIG_SCRIPTS logic doesn't tweak them enough
|
|
define C_ICAP_TUNE_INSTALLATION
|
|
$(RM) -f $(TARGET_DIR)/etc/c-icap.*.default
|
|
$(SED) 's%/usr/etc/%/etc/%' $(TARGET_DIR)/etc/c-icap.conf
|
|
$(SED) 's%/usr/var/%/var/%' $(TARGET_DIR)/etc/c-icap.conf
|
|
$(SED) 's%INCDIR=.*%INCDIR=$(STAGING_DIR)/usr/include%' \
|
|
$(STAGING_DIR)/usr/bin/{c-icap,c-icap-libicapapi}-config
|
|
$(SED) 's%INCDIR2=.*%INCDIR2=$(STAGING_DIR)/usr/include/c_icap%' \
|
|
$(STAGING_DIR)/usr/bin/{c-icap,c-icap-libicapapi}-config
|
|
$(SED) 's%-L$$LIBDIR %%' $(STAGING_DIR)/usr/bin/c-icap-libicapapi-config
|
|
endef
|
|
|
|
C_ICAP_POST_INSTALL_TARGET_HOOKS += C_ICAP_TUNE_INSTALLATION
|
|
|
|
$(eval $(autotools-package))
|