import vim-taglist

The "Tag List" plugin is a source code browser for the Vim
editor.  It provides an overview of the structure of source
code files and allows you to efficiently browse through
source code files in different programming languages.

ok landry@
This commit is contained in:
simon 2008-05-26 09:33:54 +00:00
parent d8df7a8750
commit ed6faf7e1f
5 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,39 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/05/26 09:33:54 simon Exp $
COMMENT = source code browser plugin for the Vim text editor
DISTNAME = taglist_45
PKGNAME = vim-taglist-4.5
CATEGORIES = devel editors
EXTRACT_SUFX = .zip
HOMEPAGE = http://vim-taglist.sourceforge.net/
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=vim-taglist/}
MAINTAINER = Simon Bertrang <simon@openbsd.org>
# BSD like license
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
VIMDIR = vim71
WRKDIST = ${WRKDIR}
RUN_DEPENDS = ::devel/ectags \
::editors/vim
NO_BUILD = Yes
NO_REGRESS = Yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/vim/${VIMDIR}/plugin/ \
${PREFIX}/share/vim/${VIMDIR}/doc/
${INSTALL_DATA} ${WRKSRC}/plugin/taglist.vim \
${PREFIX}/share/vim/${VIMDIR}/plugin/
${INSTALL_DATA} ${WRKSRC}/doc/taglist.txt \
${PREFIX}/share/vim/${VIMDIR}/doc/
.include <bsd.port.mk>

View File

@ -0,0 +1,5 @@
MD5 (taglist_45.zip) = mbU2amTupgkrsUDffUwalQ==
RMD160 (taglist_45.zip) = zH1CjIseRX2WhvEoYhg6ZSTgRNY=
SHA1 (taglist_45.zip) = yAVrNZCoPwauOha4rns1DdTIfnw=
SHA256 (taglist_45.zip) = iqL0kQSJ8MTvKkpdne0Hiw6KBUpUKZiaT3jCS7hnU/4=
SIZE (taglist_45.zip) = 50243

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-plugin_taglist_vim,v 1.1.1.1 2008/05/26 09:33:54 simon Exp $
--- plugin/taglist.vim.orig Sat May 24 23:10:15 2008
+++ plugin/taglist.vim Sat May 24 23:11:49 2008
@@ -87,6 +87,9 @@ if !exists('loaded_taglist')
elseif executable('exctags')
" On Free-BSD, exuberant ctags is installed as exctags
let Tlist_Ctags_Cmd = 'exctags'
+ elseif executable('ectags')
+ " On OpenBSD, exuberant ctags is installed as ectags
+ let Tlist_Ctags_Cmd = 'ectags'
elseif executable('ctags')
let Tlist_Ctags_Cmd = 'ctags'
elseif executable('ctags.exe')

View File

@ -0,0 +1,4 @@
The "Tag List" plugin is a source code browser for the Vim
editor. It provides an overview of the structure of source
code files and allows you to efficiently browse through
source code files in different programming languages.

View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2008/05/26 09:33:54 simon Exp $
share/vim/vim71/doc/taglist.txt
share/vim/vim71/plugin/taglist.vim