# HG changeset patch # User Pascal Bellard # Date 1223838385 0 # Node ID 1783302c22a45ea017369f0b86f538e6522a910d # Parent 26b57ae6bfb041dd7044ed3ebce6c2f001d19760 Add ekiga diff -r 26b57ae6bfb0 -r 1783302c22a4 ekiga/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ekiga/receipt Sun Oct 12 19:06:25 2008 +0000 @@ -0,0 +1,40 @@ +# SliTaz package receipt. + +PACKAGE="ekiga" +VERSION="3.0.0" +CATEGORY="network" +SHORT_DESC="SIP and H.323 compatible VoIP telephony and video conferencing." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.ekiga.org/" +WGET_URL="$WEB_SITE/admin/downloads/latest/sources/sources/$TARBALL" +BUILD_DEPENDS="opal-dev opal ptlib-dev ptlib gtk+-dev intltool libsigc++ libsigc++-dev openssl-dev libSDL-dev libunixODBC" +DEPENDS="opal ptlib cyrus-sasl openssl libSDL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/bin --mandir=/usr/share/man \ + --disable-gnome --disable-gconf --disable-eds --disable-notify \ + --disable-xv --disable-avahi --disable-scrollkeeper --disable-gdu \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/etc $fs + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/sounds $fs/usr/share + cp -a $_pkg/usr/share/icons $fs/usr/share + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + cp -a $_pkg/usr/share/dbus-1 $fs/usr/share + cp -a $_pkg/usr/share/applications $fs/usr/share +} +