wok view ekiga/receipt @ rev 4934

add/improve TAGS d* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 13:17:20 2010 +0000 (2010-02-16)
parents e8024c01fc47
children 31c985a0bd3d
line source
1 # SliTaz package receipt.
3 PACKAGE="ekiga"
4 VERSION="3.2.4"
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/${PACKAGE}_${VERSION}/$TARBALL"
11 BUILD_DEPENDS="opal-dev opal ptlib-dev ptlib gtk+-dev intltool libsigc++ \
12 libsigc++-dev openssl-dev libsdl-dev libunixODBC"
13 DEPENDS="opal ptlib cyrus-sasl openssl libsdl libunixODBC dbus \
14 dbus-glib expat gtk+ libsigc++ libxml2 xorg-libXdamage"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's/CXXFLAGS="-g -O2"/CXXFLAGS="-g -fexceptions -O2"/' configure
21 ./configure --prefix=/usr --sysconfdir=/etc \
22 --libexecdir=/usr/bin --mandir=/usr/share/man \
23 --disable-gnome --disable-gconf --disable-eds --disable-notify \
24 --disable-xv --disable-avahi --disable-scrollkeeper --disable-gdu \
25 --disable-ldap \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $_pkg/etc $fs
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/share/sounds $fs/usr/share
38 cp -a $_pkg/usr/share/icons $fs/usr/share
39 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
40 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
41 cp -a $_pkg/usr/share/applications $fs/usr/share
42 }