blob: 2dc1a19709d7538ee7516f7af16b6257b02439ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: options.mk,v 1.1 2006/06/16 09:25:30 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.imp
PKG_SUPPORTED_OPTIONS= ispell aspell gnupg
.include "../../mk/bsd.options.mk"
###
### Use aspell with IMP
###
.if !empty(PKG_OPTIONS:Maspell)
DEPENDS+= aspell-[0-9]*:../../textproc/aspell
.endif
###
### Use ispell with IMP
###
.if !empty(PKG_OPTIONS:Mispell)
DEPENDS+= ispell-base-[0-9]*:../../textproc/ispell-base
.endif
###
### Use gnupg with IMP
###
.if !empty(PKG_OPTIONS:Mgnupg)
DEPENDS+= gnupg-[0-9]*:../../security/gnupg
.endif
|