From owner-svn-ports-all@freebsd.org Sat Oct 22 07:05:57 2016 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 34F64C1C990; Sat, 22 Oct 2016 07:05:57 +0000 (UTC) (envelope-from koobs@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 1201E2FB; Sat, 22 Oct 2016 07:05:57 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9M75uYY097710; Sat, 22 Oct 2016 07:05:56 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9M75t2v097707; Sat, 22 Oct 2016 07:05:56 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201610220705.u9M75t2v097707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 22 Oct 2016 07:05:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424449 - in head/devel/ncurses: . files X-SVN-Group: ports-head 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: Sat, 22 Oct 2016 07:05:57 -0000 Author: koobs Date: Sat Oct 22 07:05:55 2016 New Revision: 424449 URL: https://svnweb.freebsd.org/changeset/ports/424449 Log: devel/ncurses: Fix pkg-config file for linking - Backport upstream patch from 20160220 [1]: modify configure macro for shared-library rules to use -Wl,-rpath rather than -rpath to work around a bug in scons (FreeBSD #178732 [2], cf: 20061021). While I'm here: - Remove unecessary CONFLICTS (on deleted port) - Add LICENSE_FILE - Tab -> space in pkg-descr: WWW URL [1] http://lists.gnu.org/archive/html/bug-ncurses/2016-02/msg00009.html [2] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=178732 PR: 209526 Submitted by: John Hein MFH: 2016Q4 Added: head/devel/ncurses/files/ head/devel/ncurses/files/patch-configure (contents, props changed) Modified: head/devel/ncurses/Makefile head/devel/ncurses/pkg-descr Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Sat Oct 22 06:08:54 2016 (r424448) +++ head/devel/ncurses/Makefile Sat Oct 22 07:05:55 2016 (r424449) @@ -3,7 +3,7 @@ PORTNAME= ncurses PORTVERSION= 6.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://invisible-mirror.net/archives/${PORTNAME}/ \ ftp://invisible-island.net/${PORTNAME}/ @@ -12,9 +12,8 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Library for terminal-independent, full-screen output -CONFLICTS= ncurses-devel-* - LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_sparc64= cannot build: coredump: illegal instruction @@ -33,6 +32,7 @@ CONFIGURE_ARGS= --datadir=${PREFIX}/shar --mandir=${MANPREFIX}/man \ --with-hashed-db \ --with-pkg-config-libdir=${PREFIX}/libdata/pkgconfig + MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= TRACE DEBUG PROFILE EXAMPLES DOCS Added: head/devel/ncurses/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ncurses/files/patch-configure Sat Oct 22 07:05:55 2016 (r424449) @@ -0,0 +1,24 @@ +# Based on upstream 6.0 patch 20160220: +# +# + modify configure macro for shared-library rules to use -Wl,-rpath +# rather than -rpath to work around a bug in scons (FreeBSD #178732, +# cf: 20061021). +# +# See Also: +# +# http://lists.gnu.org/archive/html/bug-ncurses/2016-02/msg00009.html +# http://lists.gnu.org/archive/html/bug-ncurses/2016-02/msg00006.html +# +# TODO: Remove patch on 6.1 update + +--- configure.orig 2015-08-05 09:20:32 UTC ++++ configure +@@ -5863,7 +5863,7 @@ case $cf_cv_system_name in + LD_RPATH_OPT="-Wl,-rpath," + ;; + (dragonfly*|freebsd*) +- LD_RPATH_OPT="-rpath " ++ LD_RPATH_OPT="-Wl,-rpath," + ;; + (netbsd*) + LD_RPATH_OPT="-Wl,-rpath," Modified: head/devel/ncurses/pkg-descr ============================================================================== --- head/devel/ncurses/pkg-descr Sat Oct 22 06:08:54 2016 (r424448) +++ head/devel/ncurses/pkg-descr Sat Oct 22 07:05:55 2016 (r424449) @@ -10,4 +10,4 @@ be configured to use BSD's /etc/termcap been approved by the old 4.4BSD curses maintainer as the official 4.4BSD curses successor. -WWW: http://invisible-island.net/ncurses/ncurses.html +WWW: http://invisible-island.net/ncurses/ncurses.html