diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-09-18 18:57:53 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-09-18 18:57:53 +0000 |
commit | 333a3e55be1f3088dcb96e3f7d52038b3a73ea46 (patch) | |
tree | 977d4ac6e66fb59d726c2844b43a02a562135682 /shells/fd | |
parent | Add a missing dependency on gdkpixbuf. (diff) |
- Fix the .zip file list format.
- Recognize .tar.z as tar+gz archive.
Notes
Notes:
svn path=/head/; revision=66630
Diffstat (limited to 'shells/fd')
-rw-r--r-- | shells/fd/Makefile | 2 | ||||
-rw-r--r-- | shells/fd/files/patch-_fdrc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/shells/fd/Makefile b/shells/fd/Makefile index 12bd55a6239b..6e95e7760bee 100644 --- a/shells/fd/Makefile +++ b/shells/fd/Makefile @@ -7,7 +7,7 @@ PORTNAME= fd PORTVERSION= 2.01b -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= shells MASTER_SITES= http://hp.vector.co.jp/authors/VA012337/soft/fd/ \ ftp://ftp.vector.co.jp/pack/unix/util/file/filer/fd/ diff --git a/shells/fd/files/patch-_fdrc b/shells/fd/files/patch-_fdrc index 646ac89b8679..7c99fa139a01 100644 --- a/shells/fd/files/patch-_fdrc +++ b/shells/fd/files/patch-_fdrc @@ -1,5 +1,5 @@ --- _fdrc.orig Wed Jul 10 00:00:00 2002 -+++ _fdrc Mon Sep 16 05:39:03 2002 ++++ _fdrc Thu Sep 19 03:26:06 2002 @@ -13,2 +13,3 @@ #SORTTYPE=0 +FD_SORTTYPE=101 @@ -47,7 +47,7 @@ + launch "$ext" "$tar Ztvf %C" "$tar_format" +done + -+for ext in .tar.gz /.tgz .taz; do ++for ext in .tar.gz .tar.z /.tgz .taz; do + launch "$ext" "$tar ztvf %C" "$tar_format" +done + @@ -58,7 +58,7 @@ +launch "/.lzh" "lha -lq" "%a %u/%g %s %x %m %d %{yt} %f" + +for ext in /.zip /.jar; do -+ launch "$ext" "unzip -lqq" "%s %m-%d-%y %t %f" ++ launch "$ext" "unzip -lqq" " %s %m-%d-%y %t %f" +done + +for ext in .Z /.gz; do @@ -86,7 +86,7 @@ + arch "$ext" "$tar Zcf %C %T" "$tar Zxf %C %TA" +done + -+for ext in .tar.gz /.tgz .taz; do ++for ext in .tar.gz .tar.z /.tgz .taz; do + arch "$ext" "$tar cf - %T | gzip -9c > %C" "$tar zxf %C %TA" +done + |