From owner-freebsd-ports@FreeBSD.ORG Wed Feb 13 15:30:36 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 155CFC88 for ; Wed, 13 Feb 2013 15:30:36 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ia0-x232.google.com (mail-ia0-x232.google.com [IPv6:2607:f8b0:4001:c02::232]) by mx1.freebsd.org (Postfix) with ESMTP id E0C8E9B8 for ; Wed, 13 Feb 2013 15:30:35 +0000 (UTC) Received: by mail-ia0-f178.google.com with SMTP id y26so1325310iab.9 for ; Wed, 13 Feb 2013 07:30:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=cr0QFYFN0y/G3VEysAWg3A0JhxO+Ie8mLVWTJHtIVW0=; b=bUB5AhKmZjGTcRksLvlvAFCvgz3Q7XlwPVlAb1f7B3vc1a4HD5RBgUfbjpgExYo6b2 Xnb5CiSfj9ifUFEYUpvXQ9Oex/JrKK3XNQdXk0KzCtTGjxZM8lj7iksHSaadCqYMrZ9h BoOPvSOqoN17+Q1pa8JF9pLUav9YNcKyr6NomM8ZxASXRGL2PAGP9qJv4ED50bPGv6mn lME0BHUoTQelbEQx54J5wT3PWFPe9HnLCQHwls8I7pZ/kxCIHuTMRltYzrdfb/1dZ+l5 XjpvtTRbjC25CYeSbpdmHhyMaGZf/UvcqBYTkJGqCEFV5RvuptdZXYYdkxQq63fejDeU WDRg== MIME-Version: 1.0 X-Received: by 10.50.214.10 with SMTP id nw10mr12081615igc.15.1360769435419; Wed, 13 Feb 2013 07:30:35 -0800 (PST) Received: by 10.64.63.12 with HTTP; Wed, 13 Feb 2013 07:30:35 -0800 (PST) Received: by 10.64.63.12 with HTTP; Wed, 13 Feb 2013 07:30:35 -0800 (PST) In-Reply-To: <511BAD63.5050202@hayers.org> References: <511BAD63.5050202@hayers.org> Date: Wed, 13 Feb 2013 15:30:35 +0000 Message-ID: Subject: Re: Writing port makefile From: Chris Rees To: "Gary J. Hayers" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Mailing List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Feb 2013 15:30:36 -0000 On 13 Feb 2013 15:20, "Gary J. Hayers" wrote: > > Hi, > > I am writing a makefile for a new port. The port in question is a simple port that is a simple download extract and copy to a directory, how is the best way to achieve this? There is no compiling of files in the work directory it simply needs to extract and copy the file to a directory. First define NO_BUILD=yes, and then make a do-install target. What type of files, and to where? Chris