From a0c81c6019b74a837aea9a7262e71ee091217f83 Mon Sep 17 00:00:00 2001 From: sanpei Date: Sat, 16 Jun 2001 08:59:04 +0000 Subject: use wc command for check file size. slower but more portable than using ls --- www/thumbnail_index/Makefile | 1 + www/thumbnail_index/files/patch-ab | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 www/thumbnail_index/files/patch-ab (limited to 'www/thumbnail_index') diff --git a/www/thumbnail_index/Makefile b/www/thumbnail_index/Makefile index 05acd4354b15..0c0a2f8c37a3 100644 --- a/www/thumbnail_index/Makefile +++ b/www/thumbnail_index/Makefile @@ -7,6 +7,7 @@ PORTNAME= thumbnail_index PORTVERSION= 1998.08.10 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.acme.com/software/thumbnail_index/ DISTNAME= ${PORTNAME}_10aug98 diff --git a/www/thumbnail_index/files/patch-ab b/www/thumbnail_index/files/patch-ab new file mode 100644 index 000000000000..deb32a163ea1 --- /dev/null +++ b/www/thumbnail_index/files/patch-ab @@ -0,0 +1,11 @@ +--- thumbnail_index.orig Tue Aug 11 03:51:55 1998 ++++ thumbnail_index Sat Jun 16 17:56:31 2001 +@@ -248,7 +248,7 @@ + EOF + ) + fi +- kb=`ls -l "$file" | awk '{print int(($4+1023)/1024)}'` ++ kb=`wc -c < "$file" | awk '{print int(($1+1023)/1024)}'` + echo "
$file
${kb}K
" + fi + ;; -- cgit