From owner-cvs-ports@FreeBSD.ORG Sun Mar 21 00:24:41 2004 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8DD216A4CE; Sun, 21 Mar 2004 00:24:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1E8143D1D; Sun, 21 Mar 2004 00:24:41 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2L8OfGe012321; Sun, 21 Mar 2004 00:24:41 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2L8OfA3012320; Sun, 21 Mar 2004 00:24:41 -0800 (PST) (envelope-from marcus) Message-Id: <200403210824.i2L8OfA3012320@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 21 Mar 2004 00:24:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/portlint Makefile ports/devel/portlint/src portlint.pl X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2004 08:24:42 -0000 marcus 2004/03/21 00:24:41 PST FreeBSD ports repository Modified files: devel/portlint Makefile devel/portlint/src portlint.pl Log: Update to 2.5.9. * Add code for formal master/slave checking rules as defined in ports/64393 [1]: 1. A port is a slave port if and only if MASTERDIR != .CURDIR 2. Slave ports should define MASTERDIR using one of the following lines: MASTERDIR= ${.CURDIR}/../..// MASTERDIR= ${.CURDIR}/../ 3. Non-slave ports shouldn't define MASTERDIR at all 4. The last line of a slave port's Makefile has to be .include "${MASTERDIR}/Makefile" 5. The last line of a non-slave ports Makefile must be one of: .include .include 6. slave ports may not include bsd.port(.pre).mk * Check to make sure MACHINE_ARCH is not defined and make sure it is never tested directly [2] * Fix some grammar nits [3] PR: 64420 [1] Submitted by: eik [1] krion [3] Requested by: kris [2] Revision Changes Path 1.74 +1 -1 ports/devel/portlint/Makefile 1.55 +47 -16 ports/devel/portlint/src/portlint.pl