summaryrefslogtreecommitdiff
path: root/editors/vim
diff options
context:
space:
mode:
authorSergey Skvortsov <skv@FreeBSD.org>2009-07-14 17:00:10 +0000
committerSergey Skvortsov <skv@FreeBSD.org>2009-07-14 17:00:10 +0000
commitfad8c5d3497624edb1406777ad9c0db192d6e6b4 (patch)
treeb3e7e8b92d49e9c6bc597829a3a4e6d8fecd4579 /editors/vim
parent- Update to 0.56 (diff)
Fix fetching famous^Wannoying patchfile 7.2.041%.
Note that "7.2.041%" can not be correct part of http:// URL at all, because must be encoded as "7.2.041%25". Fetching works only because file fetched via "ftp://". However this name prevent using local distfiles cache accessed by http:// protocol, ex.: MASTER_SITE_OVERRIDE=http://freebsd.mycompany.com/distfiles/vim/ So this file should be removed/renamed ASAP. PR: ports/136027 Submitted by: johans Approved by: maintainer timeout
Notes
Notes: svn path=/head/; revision=237792
Diffstat (limited to 'editors/vim')
-rw-r--r--editors/vim/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile
index 78f7b28eabd3..d843a77fa1de 100644
--- a/editors/vim/Makefile
+++ b/editors/vim/Makefile
@@ -16,7 +16,7 @@ MASTER_SITES= ${MASTER_SITE_VIM}
DISTFILES= ${RELEASE}${EXTRACT_SUFX}
PATCH_SITES= ${MASTER_SITES:S|unix|patches/${PORTVERSION:C/\.[0-9a-z]*$//}|}\
- ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/obrien/
+ ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/obrien/:local
PATCHFILES!= /usr/bin/jot -s " " -w ${PORTVERSION:C/\.[0-9]*$//}.%03d \
${PATCHLEVEL} 1 ${PATCHLEVEL}
# bits to remove
@@ -27,7 +27,7 @@ BADPATCHES= 007 036 049 071 072 074 088 089 093 101 138 150 172 191 194 204 205
.for p in ${BADPATCHES}
PATCHFILES:= ${PATCHFILES:N7.2.${p}}
.endfor
-PATCHFILES:= ${PATCHFILES:S/041/041%/}
+PATCHFILES:= ${PATCHFILES:S/041/041%:local/}
MAINTAINER?= obrien@FreeBSD.org
COMMENT?= Vi "workalike", with many additional features