wok-next annotate iptraf/receipt @ rev 20227

gesftpserver, icewm-xdgmenu, man2html: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 05 23:23:24 2017 +0100 (2017-11-05)
parents dab2061f6f23
children f48456621a9d
rev   line source
pascal@10906 1 # SliTaz package receipt.
pascal@10906 2
pascal@10906 3 PACKAGE="iptraf"
pascal@10906 4 VERSION="3.0.0"
pascal@10906 5 CATEGORY="network"
pascal@10906 6 SHORT_DESC="IP Network Monitoring Software."
pascal@10906 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15600 8 LICENSE="GPL2"
pascal@10906 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@10906 10 WEB_SITE="http://$PACKAGE.seul.org/"
pascal@10906 11 WGET_URL="ftp://$PACKAGE.seul.org/pub/$PACKAGE/$TARBALL"
al@18937 12 CONFIG_FILES="/var/iptraf/iptraf.cfg"
pascal@15600 13
pascal@10906 14 DEPENDS="ncurses"
pascal@10906 15 BUILD_DEPENDS="ncurses-dev"
pascal@10906 16
pascal@10906 17 # Rules to configure and make the package.
pascal@10906 18 compile_rules()
pascal@10906 19 {
pascal@10906 20 cd $src/src
pascal@10906 21 mkdir -p $DESTDIR/usr/bin 2> /dev/null
pascal@10906 22 sed -i 's/ARPHRD_PPP:$/& case ARPHRD_NONE:/' packet.c
pascal@10906 23 sed -i 's|/local/|/|' Makefile
pascal@10906 24 make clean &&
pascal@10906 25 make &&
pascal@10906 26 cp rvnamed rawtime iptraf $DESTDIR/usr/bin
pascal@10906 27 }
pascal@10906 28
pascal@10906 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10906 30 genpkg_rules()
pascal@10906 31 {
al@18943 32 mkdir -p $fs/var/iptraf $fs/var/log/iptraf
mojo@14993 33 cp -a $install/* $fs
pascal@10906 34 }
al@18943 35
al@18943 36 post_install()
al@18943 37 {
al@18943 38 mkdir -p "$1/var/run/iptraf"
al@18943 39 }
al@18943 40
al@18943 41 post_remove()
al@18943 42 {
al@18943 43 rm -r "$1/var/run/iptraf"
al@18943 44 }