# HG changeset patch # User Hans-G?nter Theisgen # Date 1652719718 -3600 # Node ID 61d8634c86c3faec78ce92d867d3551c2ea6d733 # Parent 11d19e4dd71e104a27983f513384ae465e83a1bc updated opal and opal-dev (3.6.6 -> 3.10.10) diff -r 11d19e4dd71e -r 61d8634c86c3 opal-dev/receipt --- a/opal-dev/receipt Mon May 16 17:33:55 2022 +0100 +++ b/opal-dev/receipt Mon May 16 17:48:38 2022 +0100 @@ -1,18 +1,18 @@ # SliTaz package receipt. PACKAGE="opal-dev" -VERSION="3.6.6" +VERSION="3.10.10" CATEGORY="development" -SHORT_DESC="Open Phone Abstraction library devel files." +SHORT_DESC="Open Phone Abstraction library development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MPL" +WEB_SITE="https://www.ekiga.org/" + WANTED="opal" -WEB_SITE="https://www.ekiga.org/" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp $install/usr/lib/*.a $fs/usr/lib + cook_copy_folders include + cook_copy_files *.*a } diff -r 11d19e4dd71e -r 61d8634c86c3 opal/receipt --- a/opal/receipt Mon May 16 17:33:55 2022 +0100 +++ b/opal/receipt Mon May 16 17:48:38 2022 +0100 @@ -1,19 +1,21 @@ # SliTaz package receipt. PACKAGE="opal" -VERSION="3.6.6" +VERSION="3.10.10" CATEGORY="network" +TAGS="telephony" SHORT_DESC="Open Phone Abstraction library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MPL" -TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="https://www.ekiga.org/" -WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" -TAGS="telephony" +WEB_SITE="http://www.opalvoip.org/" +REPOLOGY="opal-voip" -DEPENDS="cyrus-sasl expat jpeg libsdl libogg libtheora libunixODBC \ -openssl ptlib tiff zlib" -BUILD_DEPENDS="ptlib ptlib-dev openssl-dev" +TARBALL="$PACKAGE-$VERSION.tar.xz" +WGET_URL="https://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" + +DEPENDS="cyrus-sasl expat jpeg libogg libsdl libtheora libunixODBC + openssl ptlib tiff zlib" +BUILD_DEPENDS="bash openssl-dev ptlib ptlib-dev" current_version() { @@ -24,18 +26,24 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --bindir=/bin \ - --libexecdir=/usr/bin --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + export SHELL=/bin/bash + export CONFIG_SHELL=/bin/bash + + ./configure \ + --prefix=/usr \ + --bindir=/bin \ + --libexecdir=/usr/bin \ + --mandir=/usr/share/man \ + --enable-video \ + $CONFIGURE_ARGS && make $MAKEFLAGS && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr - rm -f $fs/usr/lib/*.a + cp -a $install/usr/lib $fs/usr + rm -f $fs/usr/lib/*.a }