From owner-svn-ports-head@freebsd.org Fri Jul 22 01:37:52 2016 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 ED504BA0768; Fri, 22 Jul 2016 01:37:52 +0000 (UTC) (envelope-from marino@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 A335617A8; Fri, 22 Jul 2016 01:37:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6M1bpSj040521; Fri, 22 Jul 2016 01:37:51 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6M1bpaw040520; Fri, 22 Jul 2016 01:37:51 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201607220137.u6M1bpaw040520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 22 Jul 2016 01:37:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418905 - head/devel/adacurses X-SVN-Group: ports-head 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.22 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 Jul 2016 01:37:53 -0000 Author: marino Date: Fri Jul 22 01:37:51 2016 New Revision: 418905 URL: https://svnweb.freebsd.org/changeset/ports/418905 Log: devel/adacurses: Set ncurses:port for every platform Currently AdaCurses on all DragonFly platforms and FreeBSD 11+ platforms requires the ports version of ncurses. Only FreeBSD 9 and 10 can use the system ncurses. The previous commit updated the gpr file in a way that looks for the ncurses libraries only at $LOCALBASE/lib, which may have broken FreeBSD 9 and 10 in a poudriere environment. Rather than fix those older platforms, just make the ncurses requirement the same for every platform. The only ports consumer is ports-mgmt/synth, and that will soon link ncurses statically anyway. Modified: head/devel/adacurses/Makefile Modified: head/devel/adacurses/Makefile ============================================================================== --- head/devel/adacurses/Makefile Fri Jul 22 00:29:31 2016 (r418904) +++ head/devel/adacurses/Makefile Fri Jul 22 01:37:51 2016 (r418905) @@ -3,7 +3,7 @@ PORTNAME= adacurses PORTVERSION= 20150808 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= ftp://invisible-island.net/AdaCurses/ DISTNAME= AdaCurses-${PORTVERSION} @@ -13,7 +13,7 @@ COMMENT= Ada95 bindings for ncurses LICENSE= MIT -USES= ada gmake tar:tgz +USES= ada gmake ncurses:port tar:tgz GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-ada-include=${PREFIX}/include/adacurses \ --with-ada-objects=${PREFIX}/lib/adacurses \ @@ -26,18 +26,6 @@ OPTIONS_DEFINE= DOCS MAKE_JOBS_UNSAFE= yes -.include - -.if ${OPSYS} == FreeBSD && ${OSREL:R} >= 11 -# PR 199109 The base ncurses has suffered a regression which prevents -# adacurses from building on -CURRENT. The PR is not getting any attention -# and I'm sick of never-ending fallout messages so bring back ports ncurses -# for the FreeBSD 11 users. -USES+= ncurses:port -.else -USES+= ncurses -.endif - post-patch: @${REINPLACE_CMD} -e '/(INSTALL_PROG)/d' -e 's|@ADAGEN_LDFLAGS@||' \ ${WRKSRC}/gen/Makefile.in