kumquat-buildroot/package/stunnel/stunnel.mk
Thomas Petazzoni 300f9c9c9d package: remove useless arguments from AUTOTARGETS
Thanks to the pkgparentdir and pkgname functions, we can rewrite the
AUTOTARGETS macro in a way that avoids the need for each package to
repeat its name and the directory in which it is present.

[Peter: pkgdir->pkgparentdir]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-09-29 23:12:27 +02:00

26 lines
763 B
Makefile

#############################################################
#
# stunnel
#
#############################################################
STUNNEL_VERSION = 4.36
STUNNEL_SITE = http://ftp.nluug.nl/pub/networking/stunnel/obsolete/4.x/
STUNNEL_DEPENDENCIES = openssl
STUNNEL_CONF_OPT += \
--with-ssl=$(STAGING_DIR)/usr \
--with-threads=fork
define STUNNEL_INSTALL_CONF_SCRIPT
$(INSTALL) -m 0755 -D package/stunnel/S50stunnel $(TARGET_DIR)/etc/init.d/S50stunnel
[ -f $(TARGET_DIR)/etc/stunnel/stunnel.conf ] || \
$(INSTALL) -m 0644 -D $(@D)/tools/stunnel.conf \
$(TARGET_DIR)/etc/stunnel/stunnel.conf
rm -f $(TARGET_DIR)/etc/stunnel/stunnel.conf-sample
endef
STUNNEL_POST_INSTALL_TARGET_HOOKS += STUNNEL_INSTALL_CONF_SCRIPT
$(eval $(call AUTOTARGETS))