From owner-svn-ports-all@freebsd.org Sun Oct 8 07:58:56 2017 Return-Path: Delivered-To: svn-ports-all@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 B3722E2C390; Sun, 8 Oct 2017 07:58:56 +0000 (UTC) (envelope-from sunpoet@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 6D28A84DAA; Sun, 8 Oct 2017 07:58:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v987wtDS050343; Sun, 8 Oct 2017 07:58:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v987wtmu050342; Sun, 8 Oct 2017 07:58:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201710080758.v987wtmu050342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 8 Oct 2017 07:58:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451498 - head/lang/gnat_util X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/lang/gnat_util X-SVN-Commit-Revision: 451498 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Oct 2017 07:58:57 -0000 Author: sunpoet Date: Sun Oct 8 07:58:54 2017 New Revision: 451498 URL: https://svnweb.freebsd.org/changeset/ports/451498 Log: Fix distinfo and unbreak this port - Remove outdated ADA_DEFAULT check MFH: 2017Q4 Modified: head/lang/gnat_util/Makefile Modified: head/lang/gnat_util/Makefile ============================================================================== --- head/lang/gnat_util/Makefile Sun Oct 8 07:58:49 2017 (r451497) +++ head/lang/gnat_util/Makefile Sun Oct 8 07:58:54 2017 (r451498) @@ -14,9 +14,7 @@ COMMENT= Library used to build GNAT tools such as ASIS LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi -BROKEN= bad distinfo - -USES= ada tar:bzip2 +USES= ada NO_MTREE= yes DISTINFO_FILE= ${.CURDIR}/../${ADAXX}-aux/distinfo WRKSRC= ${WRKDIR}/${PORTNAME} @@ -24,11 +22,11 @@ MAKE_ENV= MAKEOBJDIR=${WRKSRC}/obj .include "${.CURDIR}/Makefile.sources" -.if defined(ADA_DEFAULT) && ${ADA_DEFAULT} == 49 -.include "${.CURDIR}/../gcc-aux/Makefile.version" -.elif defined(ADA_DEFAULT) && ${ADA_DEFAULT} == 5 +.if defined(ADA_DEFAULT) && ${ADA_DEFAULT} == 5 +USES+= tar:bzip2 .include "${.CURDIR}/../gcc5-aux/Makefile.version" .else +USES+= tar:xz .include "${.CURDIR}/../gcc6-aux/Makefile.version" .endif