summaryrefslogtreecommitdiff
path: root/editors/vim/Makefile
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-01-24 11:47:53 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-01-24 11:47:53 +0000
commit73983781c1729dd468cffd539283b2bfd9bbc136 (patch)
treec01239deefb82c4c937e29ef43417fa19da5e776 /editors/vim/Makefile
parent- Update to version 0.13.0 (diff)
Update to Vim 6.0 patchlevel 150
Notes
Notes: svn path=/head/; revision=53680
Diffstat (limited to 'editors/vim/Makefile')
-rw-r--r--editors/vim/Makefile32
1 files changed, 19 insertions, 13 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile
index b22937becfc3..52972eaef2e2 100644
--- a/editors/vim/Makefile
+++ b/editors/vim/Makefile
@@ -7,7 +7,7 @@
#
PORTNAME?= vim
-PORTVERSION= 6.0.143
+PORTVERSION= 6.0.150
PORTREVISION?= 0
CATEGORIES?= editors
MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/vim/unix/ \
@@ -20,22 +20,28 @@ MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/vim/unix/ \
DISTNAME= vim-${PORTVERSION:C/\.[0-9]*$//}
PATCH_SITES= ${MASTER_SITES:S/unix/patches/}
-.for p in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 71 72 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 94 95 96 97 98 99
-PATCHFILES+= ${PORTVERSION:C/\.[0-9]*$//}.0${p}
+# 0xy
+.for t in 0 1 2 3 4 5 6 7 8 9
+.for o in 0 1 2 3 4 5 6 7 8 9
+PATCHFILES+= ${PORTVERSION:C/\.[0-9]*$//}.0${t}${o}
.endfor
-.for q in 0 1 2 3
-.for p in 0 1 2 3 4 5 6 7 8 9
-PATCHFILES+= ${PORTVERSION:C/\.[0-9]*$//}.1${q}${p}
.endfor
+# 1xy where y covers 0-9
+.for t in 0 1 2 3 4
+.for o in 0 1 2 3 4 5 6 7 8 9
+PATCHFILES+= ${PORTVERSION:C/\.[0-9]*$//}.1${t}${o}
.endfor
-.for p in 0 1 2 3
-PATCHFILES+= ${PORTVERSION:C/\.[0-9]*$//}.14${p}
.endfor
-
-BADPATCHES= 012 106 107 115 116 117 119 121 122 123 125 135 137 138
-
-.for i in ${BADPATCHES}
-PATCHFILES:= ${PATCHFILES:N6.0.${i}}
+# 1xy remander
+.for t in 5
+.for o in 0
+PATCHFILES+= ${PORTVERSION:C/\.[0-9]*$//}.1${t}${o}
+.endfor
+.endfor
+# bits to remove
+BADPATCHES= 000 012 027 035 048 053 064 070 073 087 093 106 107 115 116 117 119 121 122 123 125 135 137 138
+.for p in ${BADPATCHES}
+PATCHFILES:= ${PATCHFILES:N6.0.${p}}
.endfor
MAINTAINER?= obrien@FreeBSD.org