# HG changeset patch # User Hans-G?nter Theisgen # Date 1645943540 -3600 # Node ID b0893fb498943bc38d7fbb6bd3948e2116d9f63c # Parent 33b1bc3e872abf337a9c4a74e39f06d9b16ec616 updated freetds and freetds-dev (1.1.24 -> 1.3.9) diff -r 33b1bc3e872a -r b0893fb49894 freetds-dev/receipt --- a/freetds-dev/receipt Sat Feb 26 22:02:57 2022 +0000 +++ b/freetds-dev/receipt Sun Feb 27 07:32:20 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="freetds-dev" -VERSION="1.1.24" +VERSION="1.3.9" CATEGORY="development" SHORT_DESC="Microsoft SQL Server and Sybase databases client libraries." MAINTAINER="pascal.bellard@slitaz.org" @@ -14,9 +14,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_files *.*a } - diff -r 33b1bc3e872a -r b0893fb49894 freetds/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/freetds/description.txt Sun Feb 27 07:32:20 2022 +0100 @@ -0,0 +1,11 @@ +FreeTDS is a set of libraries for Unix and Linux that allows +your programs to natively talk to Microsoft SQL Server and +Sybase databases. + +Technically speaking, FreeTDS is an open source implementation +of the TDS (Tabular Data Stream) protocol used by these +databases for their own clients. +It supports many different flavors of the protocol and three +APIs to access it. +Additionally FreeTDS works with other software such as Perl +and PHP, providing access from those languages as well. diff -r 33b1bc3e872a -r b0893fb49894 freetds/receipt --- a/freetds/receipt Sat Feb 26 22:02:57 2022 +0000 +++ b/freetds/receipt Sun Feb 27 07:32:20 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="freetds" -VERSION="1.1.24" +VERSION="1.3.9" CATEGORY="system-tools" SHORT_DESC="Microsoft SQL Server and Sybase databases client libraries." MAINTAINER="pascal.bellard@slitaz.org" @@ -29,9 +29,10 @@ --infodir=/usr/share/info \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath && + $CONFIGURE_ARGS && make && - make -j 1 DESTDIR=$DESTDIR install + make install -j 1 DESTDIR=$DESTDIR +# Do not remove -j 1 } # Rules to gen a SliTaz package suitable for Tazpkg.