wok annotate rrdtool/receipt @ rev 11603

Up rrdtool (1.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 19 08:39:06 2012 +0100 (2012-01-19)
parents 6ece638b3ddb
children fad852c4aabe
rev   line source
pascal@1437 1 # SliTaz package receipt.
pascal@1437 2
pascal@1437 3 PACKAGE="rrdtool"
pascal@11603 4 VERSION="1.4.6"
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@10584 13 BUILD_DEPENDS="perl pkg-config zlib-dev freetype-dev libpng-dev libxml2-dev \
pascal@11603 14 fontconfig-dev pixman-dev cairo-dev glib-dev pango-dev python-dev perl groff \
pascal@11603 15 libwrap-dev tcl-dev lua-dev ruby"
jozee@4972 16 TAGS="logs"
pascal@1437 17
pascal@1437 18 # Rules to configure and make the package.
pascal@1437 19 compile_rules()
pascal@1437 20 {
pascal@1437 21 cd $src
pascal@11603 22 sed -i 's/PL_sv_undef sv_undef/PL_sv_undef PL_sv_undef/' bindings/perl-shared/RRDs.xs
pascal@1437 23 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@3236 24 --enable-perl-site-install \
pascal@1437 25 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1437 26 make &&
pascal@1437 27 make DESTDIR=$PWD/_pkg install
pascal@1437 28 }
pascal@1437 29
pascal@1437 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1437 31 genpkg_rules()
pascal@1437 32 {
pascal@1437 33 mkdir -p $fs/usr/lib
pascal@1437 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@1437 35 cp -a $_pkg/usr/bin $fs/usr
pascal@1437 36 }
pascal@1437 37