diff options
author | martti <martti@pkgsrc.org> | 2006-02-03 10:49:53 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2006-02-03 10:49:53 +0000 |
commit | 8349298fb9b814adb3393f6832ff6bebc97d458b (patch) | |
tree | b78ea0d19c67212313bf89807849807639e042d7 /editors/vim-share | |
parent | a00fc5c3cdefde5e6d90082dda70a845ddea8075 (diff) | |
download | pkgsrc-8349298fb9b814adb3393f6832ff6bebc97d458b.tar.gz |
Optional support for cscope. From Simon Schubert in a private mail.
Diffstat (limited to 'editors/vim-share')
-rw-r--r-- | editors/vim-share/Makefile.common | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/editors/vim-share/Makefile.common b/editors/vim-share/Makefile.common index 8aa76473dba..2546ac3fcac 100644 --- a/editors/vim-share/Makefile.common +++ b/editors/vim-share/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.52 2005/12/27 10:17:29 martti Exp $ +# $NetBSD: Makefile.common,v 1.53 2006/02/03 10:49:53 martti Exp $ .include "../../editors/vim-share/version.mk" @@ -41,3 +41,14 @@ ALTERNATIVES_SRC= ${.CURDIR}/../../editors/vim-share/ALTERNATIVES .else ALTERNATIVES_SRC= .endif + +PKG_SUPPORTED_OPTIONS+= cscope +PKG_OPTIONS_VAR= PKG_OPTIONS.vim +PKG_SUGGESTED_OPTIONS= cscope + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mcscope) +DEPENDS+= cscope-[0-9]*:../../devel/cscope +CONFIGURE_ARGS+= --enable-cscope +.endif |