wok-4.x rev 8698
add: mk-livestatus
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu Feb 17 23:07:51 2011 +0100 (2011-02-17) |
parents | f99b65d1546b |
children | 7e463c50f245 |
files | mk-livestatus/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mk-livestatus/receipt Thu Feb 17 23:07:51 2011 +0100 1.3 @@ -0,0 +1,44 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mk-livestatus" 1.7 +VERSION="1.1.8" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Nagios status broker module" 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +DEPENDS="nagios" 1.12 +BUILD_DEPENDS="nagios-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://mathias-kettner.de/checkmk_livestatus.html" 1.15 +WGET_URL="http://mathias-kettner.de/download/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + ./configure \ 1.22 + --prefix=/usr \ 1.23 + --infodir=/usr/share/info \ 1.24 + --mandir=/usr/share/man \ 1.25 + $CONFIGURE_ARGS && 1.26 + make && make DESTDIR=$PWD/_pkg install 1.27 +} 1.28 + 1.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.30 +genpkg_rules() 1.31 +{ 1.32 + mkdir -p $fs/usr 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $_pkg/usr/lib $fs/usr 1.35 + 1.36 + strip -s $fs/usr/lib/* 1.37 +} 1.38 + 1.39 +post_install() 1.40 +{ 1.41 + echo "Processing post-install commands..." 1.42 + # Modify nagios config 1.43 + cat <<EOT>> $1/etc/nagios/nagios.cfg 1.44 +broker_module=/usr/lib/mk-livestatus/livestatus.o /var/lib/nagios/rw/live 1.45 +event_broker_options=-1 1.46 +EOT 1.47 +}