1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Update to 2.1-pre28

Based on:
PR:		109332
Submitted by:	rafan
This commit is contained in:
Dmitry Sivachenko 2007-07-05 09:15:41 +00:00
parent 7f2acdc743
commit 8ffbeff529
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=194997
3 changed files with 11 additions and 12 deletions

View File

@ -6,12 +6,11 @@
#
PORTNAME= links
PORTVERSION= 2.1.p21
PORTREVISION= 1
PORTVERSION= 2.1.p28
PORTEPOCH= 1
CATEGORIES?= www
MASTER_SITES= http://links.twibright.com/download/
DISTNAME= ${PORTNAME}-2.1pre21
DISTNAME= ${PORTNAME}-2.1pre28
MAINTAINER?= demon@FreeBSD.org
COMMENT= Lynx-like text WWW browser

View File

@ -1,3 +1,3 @@
MD5 (links-2.1pre21.tar.bz2) = 7687e2c32e337e11c6e9d8cd8c5202c9
SHA256 (links-2.1pre21.tar.bz2) = 0ad03eff9b4ff3de552906b8adb6a459da019cb78a1d509343f4c73d7529667a
SIZE (links-2.1pre21.tar.bz2) = 3869781
MD5 (links-2.1pre28.tar.bz2) = 815afe558dd548258eeb03b01cce01ce
SHA256 (links-2.1pre28.tar.bz2) = 203531be7c84ebe3a5d53c6d6cda4f4a27626dec620ec5aa8926414d0bee5995
SIZE (links-2.1pre28.tar.bz2) = 3915943

View File

@ -1,9 +1,9 @@
--- types.c.orig Thu Mar 24 10:36:47 2005
+++ types.c Thu Mar 24 10:38:12 2005
@@ -796,7 +796,8 @@
if (*ct == '.') ext = ct + 1;
else if (dir_sep(*ct)) ext = NULL;
if (ext) while (ext[extl] && !dir_sep(ext[extl]) && !end_of_dir(url, ext[extl])) extl++;
--- types.c.orig Thu Jul 5 13:10:37 2007
+++ types.c Thu Jul 5 13:12:07 2007
@@ -807,7 +807,8 @@
ext = NULL;
}
if (ext) while (ext[extl] && ext[extl] != '.' && !dir_sep(ext[extl]) && !end_of_dir(url, ext[extl])) extl++;
- if ((extl == 3 && !casecmp(ext, "htm", 3)) ||
+ if (force_html ||
+ (extl == 3 && !casecmp(ext, "htm", 3)) ||