From owner-freebsd-ports@FreeBSD.ORG Fri Sep 19 18:35:39 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30622FC7 for ; Fri, 19 Sep 2014 18:35:39 +0000 (UTC) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BAB7DA4C for ; Fri, 19 Sep 2014 18:35:38 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id q5so50672wiv.7 for ; Fri, 19 Sep 2014 11:35:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=W/rY1yWtgeuX8gsfVlpqdg6xNQ1FDcePMpid8FQuK4M=; b=1CEEUMBG4FeMgF9xEKrl2YSbiTVtD8azeN0NAi4xrjj14QcBWMtOIvE1F14YPbOUpL BXe5Wg82d+/vH31VE3eg2H0wbqZDiqjJ8gWQnjq5yEYhmvYw+yJSuoPLd6LZJyg2oDa7 BBkJvf//AAVExgTD4/XfDe0HS/oxaGaHIBKb7AK6SDgll49HaIcqZN6kKuCvwNlrxZxS DrslD7YMQ1mnXkpco7NbmkhCtZtZ10daiDgnh2KLhdZT8zkih/9XQdKvfukxCxHbbpwz VSr7hz4S5BYfjhmT9dSe79R/ZiR2eesIsyx/tq+4NIITofzLuGmnpcBqMEjC1fbqmW6K FfFA== MIME-Version: 1.0 X-Received: by 10.194.84.42 with SMTP id v10mr2832547wjy.63.1411151736727; Fri, 19 Sep 2014 11:35:36 -0700 (PDT) Received: by 10.180.104.66 with HTTP; Fri, 19 Sep 2014 11:35:36 -0700 (PDT) Date: Fri, 19 Sep 2014 20:35:36 +0200 Message-ID: Subject: Place of LICENSE_FILE in Makefile From: =?UTF-8?Q?Fernando_Apestegu=C3=ADa?= To: FreeBSD Mailing List Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Sep 2014 18:35:39 -0000 Hi, I'm facing a situation with a new Makefile. I want to set LICENSE_FILE to the location of the license file of the distribution. The file is located under ${WRKSRC} that has been set to ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} If I use LICENSE_FILE _after_ setting WRKSRC, I get an error from portlint. Also, all the GH_* variables need to be set before I can use them to point LICENSE_FILE to the proper path, so... in which order should I define these variables so portlint doesn't complain? TIA