From owner-svn-ports-head@FreeBSD.ORG Wed Nov 7 08:25:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A5BC97D; Wed, 7 Nov 2012 08:25:43 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id DB05E8FC08; Wed, 7 Nov 2012 08:25:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qA78Pghv086494; Wed, 7 Nov 2012 08:25:42 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qA78PgLJ086490; Wed, 7 Nov 2012 08:25:42 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201211070825.qA78PgLJ086490@svn.freebsd.org> From: Guido Falsi Date: Wed, 7 Nov 2012 08:25:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307122 - in head/sysutils/cpdup: . 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-head@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 07 Nov 2012 08:25:43 -0000 Author: madpilot Date: Wed Nov 7 08:25:42 2012 New Revision: 307122 URL: http://svnweb.freebsd.org/changeset/ports/307122 Log: - Don't pass -T option to ssh process, this allows use of the "null" cipher if requested [1] - Fix build with clang - Trim Makefile headers Submitted by: Oliver Fromme [1] Approved by: Gianmarco Giovannelli (maintainer) Feature safe: yes Added: head/sysutils/cpdup/files/patch-Makefile (contents, props changed) Modified: head/sysutils/cpdup/Makefile (contents, props changed) head/sysutils/cpdup/files/patch-hclink.c (contents, props changed) Modified: head/sysutils/cpdup/Makefile ============================================================================== --- head/sysutils/cpdup/Makefile Wed Nov 7 08:17:31 2012 (r307121) +++ head/sysutils/cpdup/Makefile Wed Nov 7 08:25:42 2012 (r307122) @@ -1,13 +1,9 @@ -# New ports collection makefile for: cpdup -# Date created: 28 Oct 1999 -# Whom: dillon -# +# Created by: Matthew Dillon # $FreeBSD$ -# PORTNAME= cpdup PORTVERSION= 1.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://apollo.backplane.com/FreeSrc/ \ http://utenti.gufi.org/~gmarco/files/distfiles/ Added: head/sysutils/cpdup/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cpdup/files/patch-Makefile Wed Nov 7 08:25:42 2012 (r307122) @@ -0,0 +1,10 @@ +--- Makefile.orig 2010-07-05 20:02:07.000000000 +0200 ++++ Makefile 2012-11-05 13:35:55.997489741 +0100 +@@ -6,6 +6,7 @@ + + .if defined(.FreeBSD) + CFLAGS += -D_ST_FLAGS_PRESENT_=1 ++NO_WERROR = true + WARNS?= 6 + .endif + Modified: head/sysutils/cpdup/files/patch-hclink.c ============================================================================== --- head/sysutils/cpdup/files/patch-hclink.c Wed Nov 7 08:17:31 2012 (r307121) +++ head/sysutils/cpdup/files/patch-hclink.c Wed Nov 7 08:25:42 2012 (r307122) @@ -1,5 +1,14 @@ ---- ./hclink.c.orig 2010-09-25 18:01:27.989863475 -0400 -+++ ./hclink.c 2010-09-25 18:01:46.138176079 -0400 +--- hclink.c.orig 2010-07-19 21:01:56.000000000 +0200 ++++ hclink.c 2012-11-05 13:16:09.731500043 +0100 +@@ -49,7 +49,7 @@ + av[n++] = "-C"; + for (m = 0; m < ssh_argc; m++) + av[n++] = ssh_argv[m]; +- av[n++] = "-T"; ++ av[n++] = "--"; + av[n++] = hc->host; + av[n++] = "cpdup"; + av[n++] = (readonly ? "-RS" : "-S"); @@ -388,7 +388,7 @@ hcc_check_space(hctransaction_t trans, struct HCHead *head, int n, int size) {