wok rev 1555

Add ekiga
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 12 19:06:25 2008 +0000 (2008-10-12)
parents 26b57ae6bfb0
children 18a8e54602a2
files ekiga/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ekiga/receipt	Sun Oct 12 19:06:25 2008 +0000
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ekiga"
     1.7 +VERSION="3.0.0"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="SIP and H.323 compatible VoIP telephony and video conferencing."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://www.ekiga.org/"
    1.13 +WGET_URL="$WEB_SITE/admin/downloads/latest/sources/sources/$TARBALL"
    1.14 +BUILD_DEPENDS="opal-dev opal ptlib-dev ptlib gtk+-dev intltool libsigc++ libsigc++-dev openssl-dev libSDL-dev libunixODBC"
    1.15 +DEPENDS="opal ptlib cyrus-sasl openssl libSDL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure --prefix=/usr --sysconfdir=/etc \
    1.22 +	--libexecdir=/usr/bin --mandir=/usr/share/man \
    1.23 +	--disable-gnome --disable-gconf --disable-eds --disable-notify \
    1.24 +	--disable-xv --disable-avahi --disable-scrollkeeper --disable-gdu \
    1.25 +	$CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/share
    1.35 +	cp -a $_pkg/etc $fs
    1.36 +	cp -a $_pkg/usr/bin $fs/usr
    1.37 +	cp -a $_pkg/usr/share/sounds $fs/usr/share
    1.38 +	cp -a $_pkg/usr/share/icons $fs/usr/share
    1.39 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    1.40 +	cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
    1.41 +	cp -a $_pkg/usr/share/applications $fs/usr/share
    1.42 +}
    1.43 +