1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Update to 2.01a.

Adjust tar_format for the latest GNU tar.
This commit is contained in:
Akinori MUSHA 2002-06-11 12:31:41 +00:00
parent 8148ca5e7c
commit 7c4a48cf79
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=61103
3 changed files with 7 additions and 15 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= fd
PORTVERSION= 2.01
PORTVERSION= 2.01a
CATEGORIES= shells
MASTER_SITES= http://hp.vector.co.jp/authors/VA012337/soft/fd/ \
ftp://ftp.vector.co.jp/pack/unix/util/file/filer/fd/

View File

@ -1 +1 @@
MD5 (FD-2.01.tar.gz) = 5385bfdaa777ee5d33f60dedc788ee6f
MD5 (FD-2.01a.tar.gz) = 681b764713c702f8504c3865f2ec3044

View File

@ -1,5 +1,5 @@
--- _fdrc.orig Wed May 8 00:00:00 2002
+++ _fdrc Thu May 16 03:14:24 2002
--- _fdrc.orig Mon Jun 10 00:00:00 2002
+++ _fdrc Tue Jun 11 21:27:57 2002
@@ -13,2 +13,3 @@
#SORTTYPE=0
+FD_SORTTYPE=101
@ -28,18 +28,10 @@
#PAGER=more%K
+FD_PAGER=${PAGER:-/usr/bin/more}%K
#EDITOR=vi
@@ -222,2 +229,42 @@
@@ -222,2 +229,34 @@
# launcher definition
+tar="tar"
+
+case `$tar --version 2>&1` in
+*GNU*\ 1.1[01]*)
+ tar_format="%a %u/%g %s %m %d %t %y %f"
+ ;;
+*)
+ tar_format="%a %u/%g %s %y-%m-%d %t %f"
+ ;;
+esac
+tar_format="%a %u/%g %s %m %d %t %y %f"
+
+launch ".tar" "$tar tvf" "$tar_format"
+
@ -71,7 +63,7 @@
+arch ".aa" "echo ERROR" "cat %X.?? | $tar zxf - %TA"
+
#(Default)
@@ -325,2 +372,37 @@
@@ -325,2 +364,37 @@
# archiver definition
+
+arch ".tar" "$tar cf %C %T" "$tar xf %C %TA"