View | Details | Raw Unified | Return to bug 175431
Collapse All | Expand All

(-)Makefile (-3 / +4 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	less+iso
8
PORTNAME=	less+iso
9
PORTVERSION=	382.262
9
PORTVERSION=	382.262
10
PORTREVISION=	1
10
PORTREVISION=	2
11
CATEGORIES=	japanese
11
CATEGORIES=	japanese
12
MASTER_SITES=	${MASTER_SITE_LOCAL}
12
MASTER_SITES=	${MASTER_SITE_LOCAL}
13
MASTER_SITE_SUBDIR=	nork
13
MASTER_SITE_SUBDIR=	nork
Lines 22-32 Link Here
22
		${DISTNAME}-iso258-259.patch.gz \
22
		${DISTNAME}-iso258-259.patch.gz \
23
		${DISTNAME}-iso259-260.patch.gz \
23
		${DISTNAME}-iso259-260.patch.gz \
24
		${DISTNAME}-iso260-261.patch.gz \
24
		${DISTNAME}-iso260-261.patch.gz \
25
		${DISTNAME}-iso261-${PORTVERSION:E}.patch.gz
25
		${DISTNAME}-iso261-${PORTVERSION:E}.patch.gz \
26
		${DISTNAME}-iso${PORTVERSION:E}.ext03.patch.gz
26
PATCH_DIST_STRIP=	-p1
27
PATCH_DIST_STRIP=	-p1
27
28
28
MAINTAINER=	ports@FreeBSD.org
29
MAINTAINER=	ports@FreeBSD.org
29
COMMENT=	Less + zcat + ISO-2022 - a pager similar to more and pg
30
COMMENT=	Less + zcat + ISO-2022 + UTF-8 - a pager similar to more and pg
30
31
31
MAKE_JOBS_SAFE=	yes
32
MAKE_JOBS_SAFE=	yes
32
GNU_CONFIGURE=	yes
33
GNU_CONFIGURE=	yes
(-)distinfo (+2 lines)
Lines 12-14 Link Here
12
SIZE (less-382-iso260-261.patch.gz) = 841
12
SIZE (less-382-iso260-261.patch.gz) = 841
13
SHA256 (less-382-iso261-262.patch.gz) = e7249de419acc3b8c4a11bed376d778711fd031887d0df0624d62a6d07356842
13
SHA256 (less-382-iso261-262.patch.gz) = e7249de419acc3b8c4a11bed376d778711fd031887d0df0624d62a6d07356842
14
SIZE (less-382-iso261-262.patch.gz) = 2215
14
SIZE (less-382-iso261-262.patch.gz) = 2215
15
SHA256 (less-382-iso262.ext03.patch.gz) = 82fb77f21ea1f3281224fcbfad073aeab12fb40d6623c9b40698be952401f821
16
SIZE (less-382-iso262.ext03.patch.gz) = 138951
(-)files/patch-ac (-2 / +2 lines)
Lines 4-8 Link Here
4
 		This modification make regex_cs-lwp9k be able to compile.
4
 		This modification make regex_cs-lwp9k be able to compile.
5
 */
5
 */
6
 
6
 
7
-char version[] = "382+iso262";
7
-char version[] = "382+iso262+ext3";
8
+char version[] = "382+iso262+regex_cs-lwp9k";
8
+char version[] = "382+iso262+ext3+regex_cs-lwp9k";
(-)files/patch-filename.c (-11 / +5 lines)
Lines 1-15 Link Here
1
--- filename.c.orig	2010-05-10 23:08:16.800855000 +0900
1
--- filename.c.orig	2010-05-10 23:08:16.800855000 +0900
2
+++ filename.c	2010-05-10 23:10:53.231134025 +0900
2
+++ filename.c	2013-01-19 08:38:15.691025968 +0900
3
@@ -802,9 +802,15 @@
3
@@ -817,6 +817,9 @@
4
 	else if (strcmp(".gz", &filename[length - 3]) == 0 ||
4
 	else if (strcmp(".xz", &filename[length - 3]) == 0 ||
5
 		 strcmp(".GZ", &filename[length - 3]) == 0)
5
 		 strcmp(".XZ", &filename[length - 3]) == 0)
6
 		return ("| gzip -cd %s");
6
 		return ("| xz -cd %s");
7
+	else if (strcmp(".xz", &filename[length - 3]) == 0 ||
8
+		 strcmp(".XZ", &filename[length - 3]) == 0)
9
+		return ("| xz -cd %s");
10
 	else if (strcmp(".bz2", &filename[length - 4]) == 0 ||
11
 		 strcmp(".BZ2", &filename[length - 4]) == 0)
12
 		return ("| bzip2 -cd %s");
13
+	else if (strcmp(".lzma", &filename[length - 5]) == 0 ||
7
+	else if (strcmp(".lzma", &filename[length - 5]) == 0 ||
14
+		 strcmp(".LZMA", &filename[length - 5]) == 0)
8
+		 strcmp(".LZMA", &filename[length - 5]) == 0)
15
+		return ("| lzma -cd %s");
9
+		return ("| lzma -cd %s");
(-)pkg-descr (-1 / +4 lines)
Lines 7-11 Link Here
7
  This enhanced less support ISO 2022 code extension techniqes and
7
  This enhanced less support ISO 2022 code extension techniqes and
8
Japanese codes(EUC Japanese, SJIS) and compressed(or gzipped) file
8
Japanese codes(EUC Japanese, SJIS) and compressed(or gzipped) file
9
viewing. The author of this patch is jam@pobox.com. See 
9
viewing. The author of this patch is jam@pobox.com. See 
10
WWW: http://www25.big.jp/~jam/less/
10
WWW: http://www25.big.jp/~jam/less/ (not available)
11
for the latest info.
11
for the latest info.
12
13
  And UTF-8 supported by bogytech.
14
WWW: http://bogytech.blogspot.jp/2011/06/jless-utf-8.html

Return to bug 175431