wok view ekiga/receipt @ rev 2845

Update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 01 13:43:09 2009 +0200 (2009-05-01)
parents ecb146e32c08
children a57b930c270b
line source
1 # SliTaz package receipt.
3 PACKAGE="ekiga"
4 VERSION="3.0.0"
5 CATEGORY="network"
6 SHORT_DESC="SIP and H.323 compatible VoIP telephony and video conferencing."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.ekiga.org/"
10 WGET_URL="$WEB_SITE/admin/downloads/latest/sources/sources/$TARBALL"
11 BUILD_DEPENDS="opal-dev opal ptlib-dev ptlib gtk+-dev intltool libsigc++ libsigc++-dev openssl-dev libSDL-dev libunixODBC"
12 DEPENDS="opal ptlib cyrus-sasl openssl libSDL libiconv libunixODBC dbus \
13 dbus-glib expat gtk+ libsigc++ libxml2 xorg-libXdamage"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc \
20 --libexecdir=/usr/bin --mandir=/usr/share/man \
21 --disable-gnome --disable-gconf --disable-eds --disable-notify \
22 --disable-xv --disable-avahi --disable-scrollkeeper --disable-gdu \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/etc $fs
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/share/sounds $fs/usr/share
36 cp -a $_pkg/usr/share/icons $fs/usr/share
37 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
38 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
39 cp -a $_pkg/usr/share/applications $fs/usr/share
40 }