wok annotate slim/receipt @ rev 1477

conky slim: update BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 04 13:18:21 2008 +0000 (2008-10-04)
parents f25290110550
children fade386d1cf6
rev   line source
pankso@263 1 # SliTaz package receipt.
pankso@263 2
pankso@263 3 PACKAGE="slim"
pascal@1424 4 VERSION="1.3.1"
pankso@263 5 CATEGORY="x-window"
pankso@263 6 SHORT_DESC="Desktop-independent graphical login manager for X11."
pankso@263 7 MAINTAINER="pankso@slitaz.org"
pascal@1477 8 DEPENDS="xorg jpeg libpng slitaz-configs"
pascal@1477 9 BUILD_DEPENDS="xorg-dev jpeg-dev libpng-dev xorg-libXft-dev"
pankso@263 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@263 11 WEB_SITE="http://slim.berlios.de"
pankso@263 12 WGET_URL="http://download.berlios.de/slim/$TARBALL"
pascal@1212 13 CONFIG_FILES="/etc/slim.conf"
pascal@1246 14 BUGS="Sometime needs more thant 10 seconds to start (since HAL/DCOP addition). Why ?"
pankso@263 15
pankso@263 16 # Rules to configure and make the package.
pankso@263 17 compile_rules()
pankso@263 18 {
pankso@263 19 cd $src
pankso@263 20 sed -i "s|/usr/X11R6/include|/usr/include/xorg|g" Makefile
pankso@263 21 sed -i "s|/usr/X11R6/|/usr/|g" Makefile
pankso@263 22 make
pankso@263 23 }
pankso@263 24
pankso@263 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@263 26 genpkg_rules()
pankso@263 27 {
pankso@263 28 mkdir -p $fs/usr/bin $fs/usr/share/slim
pankso@263 29 cp -a $src/slim $fs/usr/bin
pankso@263 30
pankso@713 31 # Config file and rc script (theme is in slitaz-configs).
pankso@263 32 cp -a stuff/etc $fs
pankso@1090 33 chown -R root.root $fs
pankso@263 34 }
pankso@263 35
pascal@1062 36 post_install()
pascal@1062 37 {
pascal@1084 38 ( cd $1/ ; cpio -o -H newc | gzip -9 ) > \
pascal@1062 39 $1/$INSTALLED/$PACKAGE/volatile.cpio.gz <<EOT
pascal@1062 40 etc/slim.conf
pascal@1062 41 EOT
pascal@1062 42 }
pascal@1062 43
pascal@1062 44 repack_cleanup()
pascal@1062 45 {
pascal@1062 46 zcat $INSTALLED/$PACKAGE/volatile.cpio.gz | ( cd $1 ; cpio -id )
pascal@1062 47 }