wok-current view ekiga/receipt @ rev 22794
recompiled gtkspell packages
| author | Hans-Günter Theisgen | 
|---|---|
| date | Mon Jan 27 09:43:00 2020 +0100 (2020-01-27) | 
| parents | 17e313b5b9c1 | 
| children | 6831608a1b2a | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="ekiga"
     4 VERSION="3.2.6"
     5 CATEGORY="network"
     6 SHORT_DESC="SIP and H.323 compatible VoIP telephony and video conferencing."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    10 WEB_SITE="https://www.ekiga.org/"
    11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    13 BUILD_DEPENDS="opal-dev opal ptlib-dev ptlib gtk+-dev intltool libsigc++ \
    14 libsigc++-dev openssl-dev libsdl-dev libunixODBC dbus-dev dbus-glib-dev \
    15 libxml2-dev file"
    16 DEPENDS="opal ptlib cyrus-sasl openssl libsdl libunixODBC dbus \
    17 dbus-glib expat gtk+ libsigc++ libxml2 xorg-libXdamage"
    18 TAGS="telephony"
    20 # Rules to configure and make the package.
    21 compile_rules()
    22 {
    23 	cd $src
    24 	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11 -lXext -lpt"
    25 	sed -i 's/CXXFLAGS="-g -O2"/CXXFLAGS="-g -fexceptions -O2"/' configure
    26 	./configure --prefix=/usr --sysconfdir=/etc \
    27 	--libexecdir=/usr/bin --mandir=/usr/share/man \
    28 	--disable-gnome --disable-gconf --disable-eds --disable-notify \
    29 	--disable-xv --disable-avahi --disable-scrollkeeper --disable-gdu \
    30 	--disable-ldap \
    31 	$CONFIGURE_ARGS &&
    32 	make $MAKEFLAGS &&
    33 	make DESTDIR=$DESTDIR install
    34 }
    36 # Rules to gen a SliTaz package suitable for Tazpkg.
    37 genpkg_rules()
    38 {
    39 	mkdir -p $fs/usr/share
    40 	cp -a $install/etc $fs
    41 	cp -a $install/usr/bin $fs/usr
    42 	cp -a $install/usr/share/sounds $fs/usr/share
    43 	cp -a $install/usr/share/icons $fs/usr/share
    44 	cp -a $install/usr/share/pixmaps $fs/usr/share
    45 	cp -a $install/usr/share/dbus-1 $fs/usr/share
    46 	cp -a $install/usr/share/applications $fs/usr/share
    47 }