# HG changeset patch # User Hans-G?nter Theisgen # Date 1658899328 -3600 # Node ID 42621d26bf5805f696b8eaef94e9fa36e6dcd181 # Parent 90c2e909559118ee4e10fd5a03630aec6377c851 hylafax: accept any tiff version 4 diff -r 90c2e9095591 -r 42621d26bf58 hylafax/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hylafax/description.txt Wed Jul 27 06:22:08 2022 +0100 @@ -0,0 +1,5 @@ +HylaFAX is an enterprise-class open-source system for sending +and receiving facsimiles as well as for sending alpha-numeric +pages. + + diff -r 90c2e9095591 -r 42621d26bf58 hylafax/receipt --- a/hylafax/receipt Tue Jul 26 16:22:26 2022 +0100 +++ b/hylafax/receipt Wed Jul 27 06:22:08 2022 +0100 @@ -24,8 +24,8 @@ # Rules to configure and make the package. compile_rules() { - # accept tiff version 4.1 as well: - sed -i 's|4.\[0\]|4.\[01\]|' configure + # accept tiff version 4.* as well: + sed -i 's|4.\[0\]|4.*|' configure [ -f defs.org ] && cp defs.org defs [ -f etc/Makefile.org ] && cp etc/Makefile.org etc/Makefile @@ -54,12 +54,10 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/sbin $fs/usr - cp -a $install/usr/lib $fs/usr - cp -a $install/var $fs + cook_copy_folders bin + cook_copy_folders lib + cook_copy_folders sbin + cook_copy_folders var rm -rf $install/var/spool/hylafax/etc/templates cp -a $install/etc $fs }