summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2006-02-03 10:49:53 +0000
committermartti <martti@pkgsrc.org>2006-02-03 10:49:53 +0000
commit50466a1e2276f135642ea04b0c9c30bad243c7c8 (patch)
treeb78ea0d19c67212313bf89807849807639e042d7 /editors
parentda76996a427c245cc012a4f25101fcd9e05d3baf (diff)
downloadpkgsrc-50466a1e2276f135642ea04b0c9c30bad243c7c8.tar.gz
Optional support for cscope. From Simon Schubert in a private mail.
Diffstat (limited to 'editors')
-rw-r--r--editors/vim-share/Makefile.common13
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