diff options
Diffstat (limited to 'mail/imp4/options.mk')
-rw-r--r-- | mail/imp4/options.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mail/imp4/options.mk b/mail/imp4/options.mk new file mode 100644 index 00000000000..c53ed9fd620 --- /dev/null +++ b/mail/imp4/options.mk @@ -0,0 +1,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 |