diff options
author | obrien <obrien@FreeBSD.org> | 2004-12-11 02:22:13 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-12-11 02:22:13 +0000 |
commit | 056a8bcc8ef622f1dbef678eb083b70d2c64deb2 (patch) | |
tree | 75ae0d098adceccfecc2e2e33de0b5e58bfc6e92 /editors/vim/Makefile | |
parent | 81fa13b9d9b6d7f7da79e2771f08a62dd476e4ee (diff) | |
download | FreeBSD-ports-056a8bcc8ef622f1dbef678eb083b70d2c64deb2.zip FreeBSD-ports-056a8bcc8ef622f1dbef678eb083b70d2c64deb2.tar.gz |
Update to Vim 6.3 patchlevel 45.
Diffstat (limited to 'editors/vim/Makefile')
-rw-r--r-- | editors/vim/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index e25d10d..e392264 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -7,7 +7,7 @@ # PORTNAME?= vim -PATCHLEVEL= 16 +PATCHLEVEL= 45 PORTVERSION= 6.3.${PATCHLEVEL} PORTREVISION?= 0 CATEGORIES?= editors @@ -18,7 +18,7 @@ PATCH_SITES= ${MASTER_SITES:S|unix|patches/${PORTVERSION:C/\.[0-9a-z]*$//}|} PATCHFILES!= /usr/bin/jot -s " " -w ${PORTVERSION:C/\.[0-9]*$//}.%03d \ ${PATCHLEVEL} 1 ${PATCHLEVEL} # bits to remove -BADPATCHES= 000 +BADPATCHES= 000 022 025 035 038 041 044 .for p in ${BADPATCHES} PATCHFILES:= ${PATCHFILES:N6.3.${p}} .endfor @@ -180,6 +180,8 @@ cklatest: | fgrep ${PORTVERSION:C/[0-9]*$//} | ${TAIL} find-bad-patches: - egrep -l '(src/os_win32|src/os_mswin|src/if_ole|src/proto/gui_w32)' * + cd ${DISTDIR} ; egrep -l \ + '(src/os_win32|src/os_mswin|src/if_ole|src/proto/gui_w32|src/gui_w48|src/gui_mac|src/os_riscos)'\ + vim/${PORTVERSION:C/\.[0-9a-z]*$//}* .include <bsd.port.post.mk> |