wok annotate fltk-2.0.x/receipt @ rev 12762

fltk-2.0.x: update WGET_URL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 12 13:10:28 2012 +0200 (2012-05-12)
parents 14855891b705
children 1bc9f8436e90
rev   line source
pankso@2794 1 # SliTaz package receipt.
pankso@2794 2
pankso@2794 3 PACKAGE="fltk-2.0.x"
slaxemulator@8638 4 VERSION="r7725"
pankso@2794 5 CATEGORY="system-tools"
pankso@2794 6 SHORT_DESC="Fast Light Tool Kit (provide fluid)."
pankso@2794 7 MAINTAINER="pankso@slitaz.org"
pankso@2794 8 DEPENDS="expat fontconfig freetype jpeg xorg-libX11 xorg-libXau xorg-libXdmcp \
pascal@5001 9 xorg-libXext xorg-libXft xorg-libXrender zlib libpng xorg-libXi \
pascal@5001 10 xorg-libXinerama gcc-lib-base"
pascal@12762 11 BUILD_DEPENDS="xorg-libXft-dev libglu-mesa mesa mesa-dev subversion autoconf"
pankso@2794 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@2794 13 WEB_SITE="http://www.fltk.org/"
pascal@12762 14 WGET_URL="subversion|http://svn.easysw.com/public/fltk/fltk/trunk"
pascal@12762 15 BRANCH="${VERSION#r}"
pankso@2794 16
pankso@2794 17 # Rules to configure and make the package.
pankso@2794 18 compile_rules()
pankso@2794 19 {
pankso@2794 20 cd $src
slaxemulator@8638 21 patch -p0 src/filename_list.cxx <<EOF
slaxemulator@8638 22 66c66
slaxemulator@8638 23 < int n = scandir(d, list, 0, (int(*)(const void*,const void*))sort);
slaxemulator@8638 24 ---
slaxemulator@8638 25 > int n = scandir(d, list, 0, (int(*)(const dirent64**,const dirent64**))sort);
slaxemulator@8638 26 EOF
pascal@12762 27 autoconf
pankso@2794 28 ./configure \
pankso@2794 29 --prefix=/usr \
pankso@2794 30 --mandir=/usr/share/man \
pankso@2794 31 --enable-shared \
pankso@2794 32 --enable-xft \
pankso@2794 33 $CONFIGURE_ARGS &&
pankso@2794 34 make &&
pankso@2794 35 cp -f fltk2-config /usr/bin &&
pankso@2794 36 make DESTDIR=$PWD/_pkg install
pankso@2794 37 }
pankso@2794 38
pankso@2794 39 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2794 40 genpkg_rules()
pankso@2794 41 {
pankso@2794 42 mkdir -p $fs/usr/lib
pankso@2794 43 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@2794 44 # Remove gl support --> fltk-2.0.x-gl
pankso@2794 45 rm $fs/usr/lib/libfltk2*gl*
pankso@2794 46 }