diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-06-16 09:25:30 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-06-16 09:25:30 +0000 |
commit | 64ce0a40a1e5393fefb7fe11ce270bc16ad95a7f (patch) | |
tree | 4a6cc83a827e93d9c07ffb660594d42537f2b19f /mail | |
parent | 96c7939fb13b1d3e0e32700904dfc6cb53d43fa0 (diff) | |
download | pkgsrc-64ce0a40a1e5393fefb7fe11ce270bc16ad95a7f.tar.gz |
Add options.mk missed during the package move
Diffstat (limited to 'mail')
-rw-r--r-- | mail/imp/options.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mail/imp/options.mk b/mail/imp/options.mk new file mode 100644 index 00000000000..2dc1a19709d --- /dev/null +++ b/mail/imp/options.mk @@ -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 |