blob: c53ed9fd6200e740264797c0d778c1e53a1703f2 (
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.1.1 2005/01/16 21:36:28 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
|