c3d5ffcd20
this release fixes a bug, where spamassassin 3.1 would parse old mail avenger headers incorrectly, rejecting legitimate mail from maintainer David Mazieres
42 lines
914 B
Makefile
42 lines
914 B
Makefile
# $OpenBSD: Makefile,v 1.2 2006/02/20 21:10:40 sturm Exp $
|
|
|
|
COMMENT= "anti-spam SMTP server"
|
|
DISTNAME= avenger-0.7.4
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://www.mailavenger.org/
|
|
|
|
MAINTAINER= David Mazieres (http://www.scs.stanford.edu/~dm/addr/)
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c crypto m pcap ssl stdc++
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/dist/
|
|
|
|
USE_LIBTOOL= Yes
|
|
LIB_DEPENDS= lib/db4/db.=4:db-4.*:databases/db/v4
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-db=${LOCALBASE} \
|
|
--with-etcdir=${SYSCONFDIR}/avenger
|
|
CONFIGURE_ENV+= WFLAGS="-Wall" \
|
|
sfs_cv_dev_random="/dev/arandom"
|
|
|
|
FLAVORS= sasl2
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Msasl2}
|
|
CONFIGURE_ARGS+= --enable-sasl
|
|
LIB_DEPENDS+= sasl2::security/cyrus-sasl2
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-sasl
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|