2008-05-31 09:28:12 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# ifplugd
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
IFPLUGD_VERSION = 0.28
|
|
|
|
IFPLUGD_SOURCE = ifplugd-$(IFPLUGD_VERSION).tar.gz
|
|
|
|
IFPLUGD_SITE = http://0pointer.de/lennart/projects/ifplugd/
|
|
|
|
IFPLUGD_AUTORECONF = NO
|
|
|
|
IFPLUGD_INSTALL_STAGING = NO
|
|
|
|
IFPLUGD_INSTALL_TARGET = YES
|
|
|
|
|
|
|
|
IFPLUGD_CONF_OPT = --disable-lynx
|
|
|
|
|
|
|
|
IFPLUGD_DEPENDENCIES = uclibc libdaemon
|
|
|
|
|
|
|
|
$(eval $(call AUTOTARGETS,package,ifplugd))
|
|
|
|
|
2008-07-10 10:17:39 +02:00
|
|
|
$(IFPLUGD_HOOK_POST_INSTALL): $(IFPLUGD_TARGET_INSTALL_TARGET)
|
2008-05-31 09:28:12 +02:00
|
|
|
$(INSTALL) -d $(TARGET_DIR)/etc/ifplugd
|
2008-07-02 09:20:16 +02:00
|
|
|
@if [ ! -f $(TARGET_DIR)/etc/ifplugd/ifplugd.conf ]; then \
|
|
|
|
$(INSTALL) $(IFPLUGD_DIR)/conf/ifplugd.conf $(TARGET_DIR)/etc/ifplugd/; \
|
|
|
|
$(SED) 's^\(ARGS=.*\)w^\1^' $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \
|
|
|
|
fi
|
2008-05-31 09:28:12 +02:00
|
|
|
$(INSTALL) -m 0755 $(IFPLUGD_DIR)/conf/ifplugd.action \
|
|
|
|
$(TARGET_DIR)/etc/ifplugd/
|
|
|
|
$(INSTALL) -m 0755 $(IFPLUGD_DIR)/conf/ifplugd.init \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S45ifplugd
|
|
|
|
# don't use bash for init script
|
|
|
|
$(SED) 's^/bin/bash^/bin/sh^g' $(TARGET_DIR)/etc/init.d/S45ifplugd
|
2008-08-19 11:40:18 +02:00
|
|
|
touch $@
|