From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:57:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4C3D85A; Tue, 7 Oct 2014 17:57:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B01057CF; Tue, 7 Oct 2014 17:57:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HvSwp022386; Tue, 7 Oct 2014 17:57:28 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HvS72022383; Tue, 7 Oct 2014 17:57:28 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201410071757.s97HvS72022383@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Tue, 7 Oct 2014 17:57:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370384 - head/misc/mbuffer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:57:29 -0000 Author: mva Date: Tue Oct 7 17:57:27 2014 New Revision: 370384 URL: https://svnweb.freebsd.org/changeset/ports/370384 QAT: https://qat.redports.org/buildarchive/r370384/ Log: - Update to version 2014.03.10 - Fix version display - Minor updates to pkg-descr, incoluding a WWW: whitespace fix Notable changes: 0140310: - added memory advise for buffer memory - compatibility fix for Solars st driver - prevent buffer overflow attack via defaults file - ignore defaults file from other users - updated documentation for use with cron - minor bugfixes 20140126: - new feature: set option defaults in ~/.mbuffer.rc - enhancement: write status to the log file - enhancement: added option to suppress status logging - fix: formatting fix for summary message PR: 193480 Submitted by: fk@fabiankeil.de Approved by: maintainer timeout (mm@) Modified: head/misc/mbuffer/Makefile head/misc/mbuffer/distinfo head/misc/mbuffer/pkg-descr Modified: head/misc/mbuffer/Makefile ============================================================================== --- head/misc/mbuffer/Makefile Tue Oct 7 17:54:07 2014 (r370383) +++ head/misc/mbuffer/Makefile Tue Oct 7 17:57:27 2014 (r370384) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mbuffer -PORTVERSION= 2013.02.20 -PORTREVISION= 1 +PORTVERSION= 2014.03.10 CATEGORIES= misc MASTER_SITES= http://www.maier-komor.de/software/mbuffer/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} @@ -36,9 +35,18 @@ CONFIGURE_ARGS+=ac_cv_search_mhash_init= USE_OPENSSL= yes .endif +# Prevent sendfile() from being detected by configure and rejected +# by mbuffer.c due to being "unable to send from buffers". +CONFIGURE_ARGS+=ac_cv_search_sendfile=no + .include post-patch: @${REINPLACE_CMD} -e 's,-lpthread,${PTHREAD_LIBS},' ${WRKSRC}/configure +post-configure: + # Rename variables to make sure they aren't redefined through mhash.h + @${REINPLACE_CMD} -E -e 's@(PACKAGE|VERSION)@MBUFFER_\1@' \ + ${WRKSRC}/config.h ${WRKSRC}/mbuffer.c + .include Modified: head/misc/mbuffer/distinfo ============================================================================== --- head/misc/mbuffer/distinfo Tue Oct 7 17:54:07 2014 (r370383) +++ head/misc/mbuffer/distinfo Tue Oct 7 17:57:27 2014 (r370384) @@ -1,2 +1,2 @@ -SHA256 (mbuffer-20130220.tgz) = 1d549c3ac7e29c6064b63195141a61253095831cf5d16f419ae6cc342f12c512 -SIZE (mbuffer-20130220.tgz) = 120519 +SHA256 (mbuffer-20140310.tgz) = ab90b6fdce16db2bf08bcda0bc5d2bfb053a9a163d2a24f95fbf246460549b99 +SIZE (mbuffer-20140310.tgz) = 122422 Modified: head/misc/mbuffer/pkg-descr ============================================================================== --- head/misc/mbuffer/pkg-descr Tue Oct 7 17:54:07 2014 (r370383) +++ head/misc/mbuffer/pkg-descr Tue Oct 7 17:57:27 2014 (r370384) @@ -1,12 +1,14 @@ mbuffer is a tool for buffering data streams. It is also a replacement for buffer with additional functionality: -- display of i/o speed -- optional use of memory mapped i/o for huge buffer files -- multithreaded instead of shared memory ipc -- multi-volume support -- auto-loader support -- network support -- buffer compatible command-line options +- multi-target network output +- on the fly hash calculation +- display of I/O speed +- optional use of memory mapped I/O for huge buffers +- multithreaded instead of sharedmemory ipc +- multi volume support +- autoloader support +- networking support +- command-line options compatible to buffer -WWW: http://www.maier-komor.de/mbuffer.html +WWW: http://www.maier-komor.de/mbuffer.html