wok rev 11223

Add from wok-undigest: icinga ipcalc jnettop lxdm mana
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 03 23:48:05 2011 +0100 (2011-11-03)
parents b165a9b3b8c3
children 1311ba9fe4bf
files icinga/receipt ipcalc/receipt jnettop/receipt lxdm/receipt mana/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/icinga/receipt	Thu Nov 03 23:48:05 2011 +0100
     1.3 @@ -0,0 +1,51 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="icinga"
     1.7 +VERSION="1.2.1"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Open Source host, service and network monitoring program"
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +DEPENDS=""
    1.12 +BUILD_DEPENDS=""
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://www.icinga.org"
    1.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$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 +		--datadir=/usr/share/icinga \
    1.24 +		--with-htmurl=/icinga \
    1.25 +		--with-lockfile=/var/run/icinga.pid \
    1.26 +		--with-icinga-user=nobody \
    1.27 +		--with-icinga-group=nogroup \
    1.28 +		--with-command-user=nobody \
    1.29 +		--with-command-group=www \
    1.30 +		--exec-prefix=/usr/bin \
    1.31 +		--bindir=/usr/bin \
    1.32 +		--sbindir=/usr/lib/icinga/cgi \
    1.33 +		--libexecdir=/usr/lib/icinga/plugins \
    1.34 +		--datadir=/usr/share/icinga \
    1.35 +		--sysconfdir=/etc/icinga \
    1.36 +		--localstatedir=/var/log/icinga \
    1.37 +		--with-mail=/usr/bin/mailx \
    1.38 +		$CONFIGURE_ARGS &&
    1.39 +	make all && \
    1.40 +	make DESTDIR=$PWD/_pkg install \
    1.41 +	    install-commandmode \
    1.42 +		install-config \
    1.43 +		install-webconf \
    1.44 +		install-idoutils \
    1.45 +		install-api
    1.46 +}
    1.47 +
    1.48 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.49 +genpkg_rules()
    1.50 +{
    1.51 +	mkdir -p $fs/usr/share/icinga
    1.52 +	cp -a $_pkg/usr/bin $fs/usr
    1.53 +}
    1.54 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/ipcalc/receipt	Thu Nov 03 23:48:05 2011 +0100
     2.3 @@ -0,0 +1,23 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="ipcalc"
     2.7 +VERSION="0.41"
     2.8 +CATEGORY="network"
     2.9 +SHORT_DESC="IP Calculator."
    2.10 +MAINTAINER="paul@slitaz.org"
    2.11 +WEB_SITE="http://jodies.de/ipcalc"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WGET_URL="http://jodies.de/ipcalc-archive/$TARBALL"
    2.14 +
    2.15 +DEPENDS="perl"
    2.16 +BUILD_DEPENDS=""
    2.17 +
    2.18 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.19 +genpkg_rules()
    2.20 +{
    2.21 +	mkdir -p $fs/usr/bin $fs/var/www/cgi-bin/ipcalc $fs/usr/share/images/ipcalc
    2.22 +	cp -a $src/ipcalc $fs/usr/bin
    2.23 +	cp -a $src/ipcalc.cgi $fs/var/www/cgi-bin/ipcalc
    2.24 +	cp -a $src/ipcalc.gif $fs/usr/share/images/ipcalc
    2.25 +	cp -a $src/ipcalculator.png $fs/usr/share/images/ipcalc
    2.26 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/jnettop/receipt	Thu Nov 03 23:48:05 2011 +0100
     3.3 @@ -0,0 +1,35 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="jnettop"
     3.7 +VERSION="0.13.0"
     3.8 +CATEGORY="network"
     3.9 +SHORT_DESC="Network online traffic visualizer."
    3.10 +MAINTAINER="paul@slitaz.org"
    3.11 +DEPENDS="ncurses libpcap"
    3.12 +BUILD_DEPENDS="ncurses-dev libpcap-dev pkg-config glib-dev"
    3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.14 +WEB_SITE="http://jnettop.kubs.info/wiki/"
    3.15 +WGET_URL="http://jnettop.kubs.info/dist/$TARBALL"
    3.16 +
    3.17 +# Rules to configure and make the package.
    3.18 +compile_rules()
    3.19 +{
    3.20 +	cd $src
    3.21 +	./configure \
    3.22 +		--prefix=/usr \
    3.23 +		--infodir=/usr/share/info \
    3.24 +		--mandir=/usr/share/man \
    3.25 +		$CONFIGURE_ARGS &&
    3.26 +	make && make DESTDIR=$PWD/_pkg install
    3.27 +}
    3.28 +
    3.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.30 +genpkg_rules()
    3.31 +{
    3.32 +	mkdir -p $fs/usr/share $fs/root
    3.33 +	cp -a $_pkg/usr/bin $fs/usr
    3.34 +	cp -a $_pkg/usr/share/jnettop $fs/usr/share
    3.35 +	# config file
    3.36 +	cp -a $src/.jnettop $fs/root/.jnettop
    3.37 +}
    3.38 +
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/lxdm/receipt	Thu Nov 03 23:48:05 2011 +0100
     4.3 @@ -0,0 +1,36 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="lxdm"
     4.7 +VERSION="0.2.0"
     4.8 +CATEGORY="x-window"
     4.9 +SHORT_DESC="Login manager from LXDE."
    4.10 +MAINTAINER="pankso@slitaz.org"
    4.11 +DEPENDS="glibc-base glib libgio"
    4.12 +BUILD_DEPENDS="slitaz-toolchain"
    4.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.14 +WEB_SITE="http://lxde.org/"
    4.15 +WGET_URL="$SF_MIRROR/lxde/$TARBALL"
    4.16 +
    4.17 +# Rules to configure and make the package.
    4.18 +compile_rules()
    4.19 +{
    4.20 +	cd $src
    4.21 +	./configure \
    4.22 +		--prefix=/usr \
    4.23 +		--libexecdir=/usr/lib/lxdm \
    4.24 +		--sysconfdir=/etc \
    4.25 +		--without-pam \
    4.26 +		$CONFIGURE_ARGS &&
    4.27 +	make &&
    4.28 +	make DESTDIR=$PWD/_pkg install
    4.29 +}
    4.30 +
    4.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.32 +genpkg_rules()
    4.33 +{
    4.34 +	mkdir -p $fs/etc $fs/usr/share
    4.35 +	cp -a $_pkg/etc/lxdm $fs/etc
    4.36 +	cp -a $_pkg/usr/lib $fs/usr
    4.37 +	cp -a $_pkg/usr/sbin $fs/usr
    4.38 +	cp -a $_pkg/usr/share/lxdm $fs/usr/share
    4.39 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/mana/receipt	Thu Nov 03 23:48:05 2011 +0100
     5.3 @@ -0,0 +1,34 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="mana"
     5.7 +VERSION="1.0.0-beta"
     5.8 +CATEGORY="games"
     5.9 +SHORT_DESC="A fully free and open source MMORPG game with the looks of old-fashioned 2D RPG"
    5.10 +MAINTAINER="devl547@gmail.com"
    5.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    5.12 +WEB_SITE="http://themanaworld.org/"
    5.13 +WGET_URL="http://manasource.org/files/$TARBALL"
    5.14 +BUILD_DEPENDS="physfs-dev libxml2-dev libsdl-mixer-dev libsdl-image-dev \
    5.15 +libsdl-net-dev libsdl-ttf-dev libsdl-ttf curl-dev zlib-dev libpng-dev guichan-dev \
    5.16 +libsdl-gfx-dev enet"
    5.17 +DEPENDS="ttf-dejavu physfs libxml2 libsdl-mixer libsdl-image libsdl-net \
    5.18 +libsdl-ttf curl zlib libpng guichan libsdl-gfx"
    5.19 +
    5.20 +# Rules to configure and make the package.
    5.21 +compile_rules()
    5.22 +{
    5.23 +	cd $src
    5.24 +	./configure --prefix=/usr --without-opengl &&
    5.25 +	make &&
    5.26 +	make DESTDIR=$PWD/_pkg install
    5.27 +}
    5.28 +
    5.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.30 +genpkg_rules()
    5.31 +{
    5.32 +	mkdir -p $fs/usr/share
    5.33 +	cp -a $_pkg/usr/bin $fs/usr
    5.34 +	cp -a $_pkg/usr/share/applications $fs/usr/share/
    5.35 +	cp -a $_pkg/usr/share/mana $fs/usr/share/
    5.36 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share/
    5.37 +}