From owner-svn-ports-head@freebsd.org Sat Dec 5 14:49:06 2015 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 7BB1FA413DF; Sat, 5 Dec 2015 14:49:06 +0000 (UTC) (envelope-from bapt@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 44D4E161B; Sat, 5 Dec 2015 14:49:06 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB5En5in095286; Sat, 5 Dec 2015 14:49:05 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB5En5Mx095285; Sat, 5 Dec 2015 14:49:05 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201512051449.tB5En5Mx095285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 5 Dec 2015 14:49:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403067 - head/devel/ncurses 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.20 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: Sat, 05 Dec 2015 14:49:06 -0000 Author: bapt Date: Sat Dec 5 14:49:05 2015 New Revision: 403067 URL: https://svnweb.freebsd.org/changeset/ports/403067 Log: Fix ncurses linker script Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Sat Dec 5 13:50:34 2015 (r403066) +++ head/devel/ncurses/Makefile Sat Dec 5 14:49:05 2015 (r403067) @@ -3,6 +3,7 @@ PORTNAME= ncurses PORTVERSION= 6.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://invisible-mirror.net/archives/${PORTNAME}/ \ ftp://invisible-island.net/${PORTNAME}/ @@ -124,8 +125,8 @@ post-install: ${RM} -f ${STAGEDIR}${PREFIX}/lib/libncurses.so \ ${STAGEDIR}${PREFIX}/lib/libncursesw.so - ${ECHO} "INPUT(libncurses.so.${RELEASE:R} AS_NEEDED(-ltinfo))" > ${STAGEDIR}${PREFIX}/lib/libncurses.so - ${ECHO} "INPUT(libncursesw.so.${RELEASE:R} AS_NEEDED(-ltinfow))" > ${STAGEDIR}${PREFIX}/lib/libncursesw.so + ${ECHO} "INPUT(libncurses.so.${PORTVERSION:R} AS_NEEDED(-ltinfo))" > ${STAGEDIR}${PREFIX}/lib/libncurses.so + ${ECHO} "INPUT(libncursesw.so.${PORTVERSION:R} AS_NEEDED(-ltinfow))" > ${STAGEDIR}${PREFIX}/lib/libncursesw.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.${PORTVERSION}