From owner-freebsd-ports@FreeBSD.ORG Mon Sep 18 22:26:08 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C47216A40F for ; Mon, 18 Sep 2006 22:26:08 +0000 (UTC) (envelope-from rossiya@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27E3A43D72 for ; Mon, 18 Sep 2006 22:26:06 +0000 (GMT) (envelope-from rossiya@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so3103373nfc for ; Mon, 18 Sep 2006 15:26:06 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=ViMyLwB/sTtRuXvHTk0eCFkzcEJSndNhwjYLm7g24sNZpvQPBleRDlgYF7FucFZ4o34rpsmp5KFPgjU9vQc9VSmkwlHyzZ1W6c+5qRVd2fuUI90Lw368ZNw3xyVfRZTXgJMH/AQn2NGsGcaN1dnZMrZsMUTtWqKFQlU6azOlm7o= Received: by 10.48.163.19 with SMTP id l19mr17389082nfe; Mon, 18 Sep 2006 15:26:05 -0700 (PDT) Received: by 10.48.48.4 with HTTP; Mon, 18 Sep 2006 15:26:05 -0700 (PDT) Message-ID: <28a99ba50609181526s6a3ab59btfca1d6517b89c951@mail.gmail.com> Date: Mon, 18 Sep 2006 15:26:05 -0700 From: MC To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Basic Diff question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Sep 2006 22:26:08 -0000 Hello I am getting going on my second port. However in this new one are many little patches to most of the source code. I always see '.orig' suffixes appended to in Freebsd diff files, like --- Src/DasherCore/FileLogger.cpp.orig Tue Jan 17 01:41:44 2006 +++ Src/DasherCore/FileLogger.cpp Tue Jan 17 01:51:33 2006 but for the life of me I don't know a way to produce these '.orig' suffixes in the patch file other than hand editing. Using diff I never get an '.orig' suffix but something like: diff -r -u --ignore-all-space work/FFFF323-src/FFFF3.cpp FFFF323-src/FFFF3.cpp --- work/FFFF323-src/FFFF3.cpp Thu Mar 9 02:37:18 2006 +++ FFFF323-src/FFFF3.cpp Fri Sep 8 04:02:57 2006 What is the trick to this?