From owner-svn-ports-head@freebsd.org Fri Dec 22 02:11:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F7D5E9BEC2; Fri, 22 Dec 2017 02:11:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3971227A3; Fri, 22 Dec 2017 02:11:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBM2BiiH068114; Fri, 22 Dec 2017 02:11:44 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBM2BiEu068113; Fri, 22 Dec 2017 02:11:44 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201712220211.vBM2BiEu068113@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 22 Dec 2017 02:11:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456951 - head/sysutils/u-boot-master X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/sysutils/u-boot-master X-SVN-Commit-Revision: 456951 X-SVN-Commit-Repository: ports 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.25 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: Fri, 22 Dec 2017 02:11:45 -0000 Author: linimon Date: Fri Dec 22 02:11:44 2017 New Revision: 456951 URL: https://svnweb.freebsd.org/changeset/ports/456951 Log: Make the IGNORE message and the COMMENT message more meaningful for the masterport. Modified: head/sysutils/u-boot-master/Makefile Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Fri Dec 22 01:30:26 2017 (r456950) +++ head/sysutils/u-boot-master/Makefile Fri Dec 22 02:11:44 2017 (r456951) @@ -11,7 +11,7 @@ CATEGORIES= sysutils PKGNAMESUFFIX?= -${MODEL} MAINTAINER= imp@FreeBSD.org -COMMENT= Cross-build das u-boot for ${MODEL} +COMMENT= Cross-build das u-boot for model ${MODEL} LICENSE= GPLv2 @@ -38,6 +38,10 @@ MAKE_ARGS+= V=1 CROSS_COMPILE=${CROSS_COMPILE} DTC=${L NO_ARCH= yes # Sanity checks +.if !defined(MODEL) && !defined(BOARD_CONFIG) && !defined(FAMILY) +MODEL= NONE +IGNORE= is a metaport; there is nothing to build +.else .if !defined(MODEL) IGNORE+= MODEL is not defined .endif @@ -46,6 +50,7 @@ IGNORE+= BOARD_CONFIG is not defined .endif .if !defined(FAMILY) IGNORE+= FAMILY is not defined +.endif .endif # Overrides for OMAP family