wok annotate rrdtool/receipt @ rev 5124

gtk+ openvas-scanner pango slitaz-base-files ttf-bitstream-vera xfree86-base-fonts xorg-base-fonts: remove spurrious SELF_INSTALL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 21 11:50:42 2010 +0100 (2010-03-21)
parents 1707e54fb4cf
children ae97a9aa5f66
rev   line source
pascal@1437 1 # SliTaz package receipt.
pascal@1437 2
pascal@1437 3 PACKAGE="rrdtool"
pascal@1437 4 VERSION="1.3.2"
pascal@1437 5 CATEGORY="misc"
pascal@1437 6 SHORT_DESC="Data logging and graphing system for time series data."
pascal@1437 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1437 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1437 9 WEB_SITE="http://oss.oetiker.ch/$PACKAGE"
pascal@1437 10 WGET_URL="$WEB_SITE/pub/$TARBALL"
pascal@5006 11 DEPENDS="zlib freetype libpng libxml2 fontconfig pixman cairo glib pango \
pascal@5026 12 xcb-util xorg-base-fonts"
pascal@1437 13 BUILD_DEPENDS="perl pkg-config zlib-dev freetype-dev libpng-dev libxml2-dev fontconfig-dev pixman-dev cairo-dev glib-dev pango-dev python-dev perl"
jozee@4972 14 TAGS="logs"
pascal@1437 15
pascal@1437 16 # Rules to configure and make the package.
pascal@1437 17 compile_rules()
pascal@1437 18 {
pascal@1437 19 cd $src
pascal@1437 20 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@3236 21 --enable-perl-site-install \
pascal@1437 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1437 23 make &&
pascal@1437 24 make DESTDIR=$PWD/_pkg install
pascal@1437 25 }
pascal@1437 26
pascal@1437 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1437 28 genpkg_rules()
pascal@1437 29 {
pascal@1437 30 mkdir -p $fs/usr/lib
pascal@1437 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@1437 32 cp -a $_pkg/usr/bin $fs/usr
pascal@1437 33 # Package all rrdtool pkgs
pascal@1437 34 for i in $(cd $WOK; ls -d rrdtool-*)
pascal@1437 35 do
pascal@1437 36 tazwok genpkg $i
pascal@1437 37 done
pascal@1437 38 }
pascal@1437 39