diff options
author | cube <cube@pkgsrc.org> | 2005-05-25 15:36:06 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2005-05-25 15:36:06 +0000 |
commit | c96fc5c18545d9419a8efbbbe46e4d55d101e7ac (patch) | |
tree | 7556203f74a7b30602e254b9e80fee968e936a28 | |
parent | 5ef4da8796aa1bd405148caed660979619f1ed27 (diff) | |
download | pkgsrc-c96fc5c18545d9419a8efbbbe46e4d55d101e7ac.tar.gz |
o Fix PKG_SUPPORTED_OPTIONS to list all possible options [hi xtraeme!],
otherwise whatever the user provides in PKG_OPTIONS_VAR gets silently
ignored [hi dillo!].
o Fix PLIST which was missing a header file. PKGREVISION++.
-rw-r--r-- | mail/dspam/Makefile | 3 | ||||
-rw-r--r-- | mail/dspam/PLIST | 3 | ||||
-rw-r--r-- | mail/dspam/options.mk | 5 |
3 files changed, 7 insertions, 4 deletions
diff --git a/mail/dspam/Makefile b/mail/dspam/Makefile index 3137df11c01..c5929829e68 100644 --- a/mail/dspam/Makefile +++ b/mail/dspam/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.31 2005/05/09 11:10:54 xtraeme Exp $ +# $NetBSD: Makefile,v 1.32 2005/05/25 15:36:06 cube Exp $ DISTNAME= dspam-3.4.6 +PKGREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.nuclearelephant.com/projects/dspam/sources/ diff --git a/mail/dspam/PLIST b/mail/dspam/PLIST index 27baa3d8ad3..ae678efe58d 100644 --- a/mail/dspam/PLIST +++ b/mail/dspam/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2005/05/02 20:34:00 reed Exp $ +@comment $NetBSD: PLIST,v 1.9 2005/05/25 15:36:06 cube Exp $ bin/dspam bin/dspam_2sql bin/dspam_admin @@ -13,6 +13,7 @@ bin/dspam_stats bin/dspamc include/dspam/buffer.h include/dspam/config.h +include/dspam/config_shared.h include/dspam/decode.h include/dspam/diction.h include/dspam/error.h diff --git a/mail/dspam/options.mk b/mail/dspam/options.mk index 8209430fc3c..887e4ffd752 100644 --- a/mail/dspam/options.mk +++ b/mail/dspam/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.9 2005/04/14 23:37:11 xtraeme Exp $ +# $NetBSD: options.mk,v 1.10 2005/05/25 15:36:06 cube Exp $ .if defined(DSPAM_DELIVERY_AGENT) && !empty(DSPAM_DELIVERY_AGENT:Mcustom) DSPAM_DELIVERY_AGENT:= ${DSPAM_DELIVERY_AGENT_ARGS} @@ -6,7 +6,8 @@ DSPAM_DELIVERY_AGENT:= ${DSPAM_DELIVERY_AGENT_ARGS} PKG_OPTIONS_VAR= PKG_OPTIONS.dspam PKG_SUPPORTED_OPTIONS= largescale homedir long-usernames graphs \ - domainscale + domainscale virtualusers preferences-extension \ + neural .include "../../mk/bsd.options.mk" |