Add options.mk missed during the package move
This commit is contained in:
parent
96c7939fb1
commit
64ce0a40a1
1 changed files with 27 additions and 0 deletions
27
mail/imp/options.mk
Normal file
27
mail/imp/options.mk
Normal file
|
@ -0,0 +1,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
|
Loading…
Reference in a new issue