From owner-svn-ports-all@FreeBSD.ORG Sat Dec 28 15:51:30 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F36F1CAB; Sat, 28 Dec 2013 15:51:29 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D38BC1618; Sat, 28 Dec 2013 15:51:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBSFpTeM043480; Sat, 28 Dec 2013 15:51:29 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBSFpTfF043476; Sat, 28 Dec 2013 15:51:29 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201312281551.rBSFpTfF043476@svn.freebsd.org> From: Johan van Selst Date: Sat, 28 Dec 2013 15:51:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337876 - in head/net/nfsshell: . 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.17 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 Dec 2013 15:51:30 -0000 Author: johans Date: Sat Dec 28 15:51:28 2013 New Revision: 337876 URL: http://svnweb.freebsd.org/changeset/ports/337876 Log: - Update nfsshell to the version by Michael Brown This version also supports NFSv3 (but not without issues) - Enable STAGE support Added: head/net/nfsshell/files/patch-nfs_prot_xdr.c (contents, props changed) Modified: head/net/nfsshell/Makefile head/net/nfsshell/distinfo head/net/nfsshell/files/patch-nfs.c Modified: head/net/nfsshell/Makefile ============================================================================== --- head/net/nfsshell/Makefile Sat Dec 28 14:59:25 2013 (r337875) +++ head/net/nfsshell/Makefile Sat Dec 28 15:51:28 2013 (r337876) @@ -2,22 +2,25 @@ # $FreeBSD$ PORTNAME= nfsshell -PORTVERSION= 19980519 +PORTVERSION= 20130510 CATEGORIES= net -MASTER_SITES= http://www.cs.vu.nl/pub/leendert/ +#MASTER_SITES= http://www.cs.vu.nl/pub/leendert/ DISTNAME= ${PORTNAME} MAINTAINER= johans@FreeBSD.org COMMENT= Userland NFS command tool -WRKSRC= ${WRKDIR}/nfs -ALL_TARGET= nfs -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DREADLINE" LIBS="-lreadline" +USE_GITHUB= yes +GH_ACCOUNT= NetDirect +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 09cdd52 + +ALL_TARGET= nfsshell +MAKE_ARGS= CC="${CC}" LIBS="-lreadline" PLIST_FILES= bin/nfsshell -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/nfs ${PREFIX}/bin/nfsshell + ${INSTALL_PROGRAM} ${WRKSRC}/nfsshell ${STAGEDIR}${PREFIX}/bin/nfsshell .include Modified: head/net/nfsshell/distinfo ============================================================================== --- head/net/nfsshell/distinfo Sat Dec 28 14:59:25 2013 (r337875) +++ head/net/nfsshell/distinfo Sat Dec 28 15:51:28 2013 (r337876) @@ -1,2 +1,2 @@ -SHA256 (nfsshell.tar.gz) = 900056f591e3a4f7ac9a7ea8d89464e9addc16ca4fe991a703ed61c98af38e2a -SIZE (nfsshell.tar.gz) = 29213 +SHA256 (nfsshell.tar.gz) = f5df3ce7c313b11f0b0d7b7d6a2ecbb1c23761e6a4226cf6d5556ddceb37b25e +SIZE (nfsshell.tar.gz) = 40129 Modified: head/net/nfsshell/files/patch-nfs.c ============================================================================== --- head/net/nfsshell/files/patch-nfs.c Sat Dec 28 14:59:25 2013 (r337875) +++ head/net/nfsshell/files/patch-nfs.c Sat Dec 28 15:51:28 2013 (r337876) @@ -1,10 +1,11 @@ ---- nfs.c.orig Sat Feb 5 23:17:18 2005 -+++ nfs.c Sat Feb 5 23:17:09 2005 -@@ -50,7 +50,6 @@ +--- nfsshell.c.orig 2013-05-10 23:40:04.000000000 +0200 ++++ nfsshell.c 2013-12-28 16:34:53.000000000 +0100 +@@ -70,7 +70,7 @@ #include #include #include -#include ++#include #include "mount.h" #include "nfs_prot.h" #include Added: head/net/nfsshell/files/patch-nfs_prot_xdr.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfsshell/files/patch-nfs_prot_xdr.c Sat Dec 28 15:51:28 2013 (r337876) @@ -0,0 +1,10 @@ +--- nfs_prot_xdr.c.orig 2013-12-28 16:36:09.000000000 +0100 ++++ nfs_prot_xdr.c 2013-12-28 16:36:34.000000000 +0100 +@@ -4,6 +4,7 @@ + */ + + #include "nfs_prot.h" ++#define xdr_u_quad_t xdr_u_int64_t + + bool_t + xdr_cookieverf3 (XDR *xdrs, cookieverf3 objp)