d8c2d82d7a
The source files contain the "(at your option) any later version" text and the website states: License This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. http://0pointer.de/lennart/projects/ifplugd/ So change the license to GPL-2.0+ Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# ifplugd
|
|
#
|
|
################################################################################
|
|
|
|
IFPLUGD_VERSION = 0.28
|
|
IFPLUGD_SITE = http://0pointer.de/lennart/projects/ifplugd
|
|
IFPLUGD_LICENSE = GPL-2.0+
|
|
IFPLUGD_LICENSE_FILES = LICENSE
|
|
IFPLUGD_AUTORECONF = YES
|
|
|
|
# install-strip unconditionally overwrites $(TARGET_DIR)/etc/ifplugd/ifplugd.*
|
|
IFPLUGD_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-exec
|
|
IFPLUGD_CONF_OPTS = --disable-lynx --with-initdir=/etc/init.d/
|
|
IFPLUGD_DEPENDENCIES = libdaemon
|
|
|
|
define IFPLUGD_INSTALL_FIXUP
|
|
$(INSTALL) -D -m 0644 $(@D)/conf/ifplugd.conf $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \
|
|
$(SED) 's^\(ARGS=.*\)w^\1^' $(TARGET_DIR)/etc/ifplugd/ifplugd.conf; \
|
|
$(INSTALL) -D -m 0755 $(@D)/conf/ifplugd.action \
|
|
$(TARGET_DIR)/etc/ifplugd/ifplugd.action
|
|
endef
|
|
|
|
IFPLUGD_POST_INSTALL_TARGET_HOOKS += IFPLUGD_INSTALL_FIXUP
|
|
|
|
define IFPLUGD_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 $(@D)/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
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|