From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Apr 26 03:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A566E906 for ; Sat, 26 Apr 2014 03:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 86C611A9C for ; Sat, 26 Apr 2014 03:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3Q3U1FT046419 for ; Sat, 26 Apr 2014 03:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3Q3U15k046418; Sat, 26 Apr 2014 03:30:01 GMT (envelope-from gnats) Date: Sat, 26 Apr 2014 03:30:01 GMT Message-Id: <201404260330.s3Q3U15k046418@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Keith Gaughan Subject: Re: ports/188319: Update: mail/greyfix to 0.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Keith Gaughan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2014 03:30:01 -0000 The following reply was made to PR ports/188319; it has been noted by GNATS. From: Keith Gaughan To: bug-followup@freebsd.org Cc: Subject: Re: ports/188319: Update: mail/greyfix to 0.4.0 Date: Sat, 26 Apr 2014 04:23:05 +0100 --QKdGvSO+nmPlgiQ/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I figured that while I'm at it, I'd might as well see where I could clean the port up. This update to the port is slimmer than my previous one, and ought to be easier to apply as I did it against a Subversion checkout of the port. --QKdGvSO+nmPlgiQ/ Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="greyfix.diff" Index: Makefile =================================================================== --- Makefile (revision 352220) +++ Makefile (working copy) @@ -2,9 +2,10 @@ # $FreeBSD$ PORTNAME= greyfix -PORTVERSION= 0.3.9 +PORTVERSION= 0.4.0 CATEGORIES= mail -MASTER_SITES= http://www.kim-minh.com/pub/greyfix/ +MASTER_SITES= http://www.kim-minh.com/pub/greyfix/ \ + http://stereochro.me/distfiles/ MAINTAINER= k@stereochro.me COMMENT= A greylisting policy daemon for Postfix @@ -11,9 +12,9 @@ SUB_FILES= pkg-message -USE_BDB= yes +USE_BDB= 5+ GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-berkeleydb-libdir=${BDB_LIB_DIR} \ +CONFIGURE_ARGS+=--with-berkeleydb-libdir=${BDB_LIB_DIR} \ --with-berkeleydb-includedir=${BDB_INCLUDE_DIR} \ --localstatedir=/var @@ -22,8 +23,4 @@ @${REINPLACE_CMD} 's|$$(localstatedir)/lib|$$(localstatedir)/db|' \ ${WRKSRC}/Makefile.in -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/greyfix ${STAGEDIR}${PREFIX}/sbin - ${INSTALL} -o nobody -m 700 -d ${STAGEDIR}/var/db/greyfix - .include Index: distinfo =================================================================== --- distinfo (revision 352220) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (greyfix-0.3.9.tar.gz) = dee4428aef9b248b68799a640a85b44ffee0e9a3b2d2f16eed1bb41edad5f204 -SIZE (greyfix-0.3.9.tar.gz) = 79883 +SHA256 (greyfix-0.4.0.tar.gz) = 26013edce3a38d586282bfc22eb91bd22df54e3558ea1b3dae54d3e7a769e4fe +SIZE (greyfix-0.4.0.tar.gz) = 98051 Index: files/patch-sockets =================================================================== --- files/patch-sockets (revision 0) +++ files/patch-sockets (working copy) @@ -0,0 +1,11 @@ +--- greyfix.c.orig 2014-04-06 16:23:26.000000000 +0100 ++++ greyfix.c 2014-04-06 16:23:37.000000000 +0100 +@@ -26,6 +26,8 @@ + #include + #include + #include ++#include ++#include + + #include + Property changes on: files/patch-sockets ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: pkg-plist =================================================================== --- pkg-plist (revision 352220) +++ pkg-plist (working copy) @@ -1,4 +1,2 @@ -@exec mkdir -m 700 -p /var/db/greyfix && chown nobody /var/db/greyfix sbin/greyfix -@cwd / @dirrmtry /var/db/greyfix --QKdGvSO+nmPlgiQ/--