diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-05-14 20:39:48 +0200 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-05-14 21:59:09 +0200 |
commit | 998f3c0457698ebf823858ada8848fa37478fbe5 (patch) | |
tree | 53672f9538f6b84592df74eda70d77ac1cd9b2ad /mail | |
parent | 666ebe95ca6a0053cde5f0a5aa779a54c9e38b54 (diff) | |
download | freebsd-ports-998f3c0457698ebf823858ada8848fa37478fbe5.zip |
mail/pfqueue: Unbreak on HEAD
- Pet portclippy
- Adopt port
Diffstat (limited to 'mail')
-rw-r--r-- | mail/pfqueue/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/mail/pfqueue/Makefile b/mail/pfqueue/Makefile index 3cc00093cd1f..45c30fe5383e 100644 --- a/mail/pfqueue/Makefile +++ b/mail/pfqueue/Makefile @@ -4,17 +4,25 @@ PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bofh@FreeBSD.org COMMENT= Console-based tool for handling Postfix 1, Postfix 2, and Exim queues WWW= http://pfqueue.sourceforge.net/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-static USES= libtool ncurses USE_LDCONFIG= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static + INSTALL_TARGET= install-strip -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400079 +CFLAGS+= -Wno-error=int-conversion +.endif + +.include <bsd.port.post.mk> |