1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/mail/qsf/Makefile
Alexey Dokuchaev 936a36e30d Update `databases/gdbm' to version 1.18.1, an important bugfix release
which restores compatibility with old databases (version 1.8) and some
later versions which were built without mmap(2) support.  Due to shlib
version change, bump port revisions of the consumer ports.

PR:		233059
Exp-run by:	antoine
Approved by:	maintainer (johans, numerous timeouts)
2018-11-11 15:38:50 +00:00

49 lines
875 B
Makefile

# Created by: liamfoy@sepulcrum.org
# $FreeBSD$
PORTNAME= qsf
PORTVERSION= 1.2.7
PORTREVISION= 3
CATEGORIES= mail
MASTER_SITES= SF
MAINTAINER= jack@jarasoft.net
COMMENT= Small fast spam filter intended to be used with procmail
OPTIONS_DEFINE= GDBM MYSQL SQLITE2
SQLITE2_DESC= SQLite2 support
USES= tar:bzip2
GNU_CONFIGURE= yes
PLIST_FILES= bin/qsf \
man/man1/qsf.1.gz
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGDBM}
LIB_DEPENDS+= libgdbm.so:databases/gdbm
.else
CONFIGURE_ARGS+= --without-gdbm
.endif
.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL= yes
.else
CONFIGURE_ARGS+= --without-mysql
.endif
.if ${PORT_OPTIONS:MSQLITE2}
USES+= sqlite:2
.else
CONFIGURE_ARGS+= --without-sqlite
.endif
post-patch:
@${REINPLACE_CMD} -e 's|Linux|@VERSION@|g' ${WRKSRC}/doc/quickref.1.in
.include <bsd.port.mk>