From owner-svn-ports-all@FreeBSD.ORG Sat Feb 28 21:35:15 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B3975D1; Sat, 28 Feb 2015 21:35:15 +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 1BFA4BF1; Sat, 28 Feb 2015 21:35:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1SLZE7V001492; Sat, 28 Feb 2015 21:35:14 GMT (envelope-from cperciva@FreeBSD.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1SLZEtc001489; Sat, 28 Feb 2015 21:35:14 GMT (envelope-from cperciva@FreeBSD.org) Message-Id: <201502282135.t1SLZEtc001489@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cperciva set sender to cperciva@FreeBSD.org using -f From: Colin Percival Date: Sat, 28 Feb 2015 21:35:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380162 - in head/sysutils/spiped: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2015 21:35:15 -0000 Author: cperciva Date: Sat Feb 28 21:35:13 2015 New Revision: 380162 URL: https://svnweb.freebsd.org/changeset/ports/380162 QAT: https://qat.redports.org/buildarchive/r380162/ Log: Add patch to work around bug in FreeBSD before r226610 (MFCed to stable/9 as r230953): Add #include before . This was breaking the build on FreeBSD 8.4. While I'm here, quiesce portlint by switching from EXTRACT_SUFX=.tgz to the new spelling USES=tar:tgz. Added: head/sysutils/spiped/files/extra-patch-proto_proto__conn.c (contents, props changed) Modified: head/sysutils/spiped/Makefile Modified: head/sysutils/spiped/Makefile ============================================================================== --- head/sysutils/spiped/Makefile Sat Feb 28 21:11:53 2015 (r380161) +++ head/sysutils/spiped/Makefile Sat Feb 28 21:35:13 2015 (r380162) @@ -4,7 +4,6 @@ PORTNAME= spiped PORTVERSION= 1.5.0 CATEGORIES= sysutils security MASTER_SITES= http://www.tarsnap.com/spiped/ -EXTRACT_SUFX= .tgz MAINTAINER= cperciva@tarsnap.com COMMENT= Daemon for creating secure symmetric pipes @@ -14,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT # The spiped build only needs C99, but this will help to get us a compiler # which has support for AESNI on x86 systems -USES= compiler:c11 +USES= compiler:c11 tar:tgz # Install into ${STAGEDIR}${PREFIX} MAKE_ARGS+= BINDIR=${STAGEDIR}${PREFIX}/bin @@ -33,6 +32,11 @@ USE_RC_SUBR= spiped OPTIONS_DEFINE= DOCS +.include +.if ${OSVERSION} < 900503 +EXTRA_PATCHES= ${FILESDIR}/extra-patch-proto_proto__conn.c +.endif + post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} Added: head/sysutils/spiped/files/extra-patch-proto_proto__conn.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/spiped/files/extra-patch-proto_proto__conn.c Sat Feb 28 21:35:13 2015 (r380162) @@ -0,0 +1,7 @@ +--- proto/proto_conn.c.orig 2015-02-28 21:19:18 UTC ++++ proto/proto_conn.c +@@ -1,3 +1,4 @@ ++#include + #include + + #include