logsurfer: new package

[Peter: fix target installation, install man pages, AUTOTARGETS args]
Signed-off-by: Dominik Faessler <faessler@was.ch>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Dominik Faessler 2012-05-14 21:36:22 +00:00 committed by Peter Korsgaard
parent 20d4b4148f
commit 0b99b75fb6
3 changed files with 37 additions and 0 deletions

View File

@ -621,6 +621,7 @@ source "package/file/Config.in"
source "package/inotify-tools/Config.in"
source "package/lockfile-progs/Config.in"
source "package/logrotate/Config.in"
source "package/logsurfer/Config.in"
source "package/screen/Config.in"
source "package/sudo/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_LOGSURFER
bool "logsurfer"
help
Logsurfer is a program for monitoring system logs in real-time,
and reporting on the occurrence of events.
http://www.crypt.gen.nz/logsurfer/

View File

@ -0,0 +1,29 @@
#############################################################
#
# logsurfer
#
#############################################################
LOGSURFER_VERSION = 1.8
LOGSURFER_SOURCE = logsurfer-$(LOGSURFER_VERSION).tar.gz
LOGSURFER_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/logsurfer/logsurfer/logsurfer-$(LOGSURFER_VERSION)
define LOGSURFER_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/src/logsurfer \
$(TARGET_DIR)/usr/bin/logsurfer
endef
ifeq ($(BR2_HAVE_DOCUMENTATION),y)
define LOGSURFER_INSTALL_TARGET_MAN
$(INSTALL) -D -m 0644 $(@D)/man/logsurfer.1 \
$(TARGET_DIR)/usr/man/man1/logsurfer.1
$(INSTALL) -D -m 0644 $(@D)/man/logsurfer.conf.4 \
$(TARGET_DIR)/usr/man/man4/logsurfer.conf.4
endef
LOGSURFER_POST_INSTALL_TARGET_HOOKS += LOGSURFER_INSTALL_TARGET_MAN
endif
$(eval $(call AUTOTARGETS))