7c494d79ed
Submitted by Ossi 'ohub' Herrala <oherrala@ee.oulu.fi> in private mail as discussed on IRCnet #NetBSD. Changes to software: * Spamprobe has a config file! * Added comprehensive command line option help. * Added support for maildir directories to all file based commands. * Added support for auto-purge (-P command line option). * Commands create-db and create-config to greate database and config file. * Added gif parser support using libungif to analyzes image attachments and derive useful information from them. Changes to package: * bdb is not in SUGGESTED_OPTIONS anymore. * added depency to graphics/libungif and gif is in SUGGESTED_OPTIONS.
17 lines
458 B
Makefile
17 lines
458 B
Makefile
# $NetBSD: options.mk,v 1.3 2006/01/07 10:27:51 hubertf Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.spamprobe
|
|
PKG_SUPPORTED_OPTIONS= bdb gif
|
|
PKG_SUGGESTED_OPTIONS= gif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mbdb)
|
|
BDB_ACCEPTED= db4 # db3 db2 (not tested)
|
|
.include "../../mk/bdb.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-db=${BDBBASE:Q}
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgif)
|
|
.include "../../graphics/libungif/buildlink3.mk"
|
|
.endif
|