diff options
author | adrianp <adrianp> | 2006-06-16 09:25:30 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2006-06-16 09:25:30 +0000 |
commit | 0054d5442ac4286ba95741c72d557d29c0e20a9f (patch) | |
tree | 4a6cc83a827e93d9c07ffb660594d42537f2b19f /mail/imp | |
parent | c91bac2cbd8966db0f8891089370f3513e59ee15 (diff) | |
download | pkgsrc-0054d5442ac4286ba95741c72d557d29c0e20a9f.tar.gz |
Add options.mk missed during the package move
Diffstat (limited to 'mail/imp')
-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 |