wok rev 22628

updated dar (2.4.18 -> 2.6.7)
author Hans-G?nter Theisgen
date Mon Jan 13 07:45:07 2020 +0100 (2020-01-13)
parents 874e0cca7eba
children 822b3b44b544
files dar/description.txt dar/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dar/description.txt	Mon Jan 13 07:45:07 2020 +0100
     1.3 @@ -0,0 +1,11 @@
     1.4 +dar is a shell command that backs up from a single file to a whole filesystems,
     1.5 +taking care of hard links, Extended Attributes, sparse files, MacOS's file forks,
     1.6 +any inode type (including Solaris Door inodes), etc.
     1.7 +It has been tested under Linux, Windows, Solaris, FreeBSD, NetBSD, MacOS X and
     1.8 +several other systems and is released under the GNU General Public License (GPL).
     1.9 +It relies on the libdar library and its APplication Interface (API), which is the
    1.10 +core part of dar programs; as such, this library is released under the GPL along
    1.11 +with dar.
    1.12 +Consequently, to use the API, your program must be released under the GPL as well.
    1.13 +Some external programs do rely directly on libdar or on the dar command-line tool
    1.14 +to provide Graphical User Interfaces (GUI).
     2.1 --- a/dar/receipt	Sun Jan 12 17:58:12 2020 +0100
     2.2 +++ b/dar/receipt	Mon Jan 13 07:45:07 2020 +0100
     2.3 @@ -1,24 +1,32 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="dar"
     2.7 -VERSION="2.4.18"
     2.8 +VERSION="2.6.7"
     2.9  CATEGORY="system-tools"
    2.10 +TAGS="backup"
    2.11  SHORT_DESC="Disk archive."
    2.12  MAINTAINER="pascal.bellard@slitaz.org"
    2.13  LICENSE="GPL2"
    2.14  WEB_SITE="http://dar.linux.free.fr/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18 -TAGS="backup"
    2.19  
    2.20 -DEPENDS="gcc-lib-base lzo libgcrypt bzip2 attr"
    2.21 -BUILD_DEPENDS="lzo-dev libgcrypt-dev bzip2-dev e2fsprogs-dev attr-dev"
    2.22 +DEPENDS="attr bzip2 gcc83-lib-base libgcrypt lzo"
    2.23 +BUILD_DEPENDS="attr-dev bzip2-dev e2fsprogs-dev gcc83 
    2.24 +	libgcrypt-dev lzo-dev"
    2.25 +
    2.26 +TODO="split package into dar and dar-dev ?"
    2.27  
    2.28  # Rules to configure and make the package.
    2.29  compile_rules()
    2.30  {
    2.31 -	./configure --prefix=/usr --infodir=/usr/share/info \
    2.32 -		--mandir=/usr/share/man \
    2.33 +	./configure				\
    2.34 +		CC=gcc-83			\
    2.35 +		CXX=g++-83			\
    2.36 +		--prefix=/usr			\
    2.37 +		--infodir=/usr/share/info	\
    2.38 +		--mandir=/usr/share/man		\
    2.39  		$CONFIGURE_ARGS &&
    2.40  	make &&
    2.41  	make DESTDIR=$DESTDIR install
    2.42 @@ -27,5 +35,5 @@
    2.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.44  genpkg_rules()
    2.45  {
    2.46 -	cp -a $install/* $fs
    2.47 +	cp -a $install/*	$fs
    2.48  }