diff options
author | skv <skv@FreeBSD.org> | 2009-07-15 01:00:10 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2009-07-15 01:00:10 +0800 |
commit | cb7a6df0615de9dc7fe83a784427c021b62a1517 (patch) | |
tree | 360ad1c8d3d503df38ad7f55a151e2c13791297e /editors/vim/Makefile | |
parent | fc2e91c39bb9f9c74c9290d955faf51ec82bc96a (diff) | |
download | freebsd-ports-gnome-cb7a6df0615de9dc7fe83a784427c021b62a1517.tar.gz freebsd-ports-gnome-cb7a6df0615de9dc7fe83a784427c021b62a1517.tar.zst freebsd-ports-gnome-cb7a6df0615de9dc7fe83a784427c021b62a1517.zip |
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
Diffstat (limited to 'editors/vim/Makefile')
-rw-r--r-- | editors/vim/Makefile | 4 |
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 |