From owner-svn-ports-head@FreeBSD.ORG Thu Jul 31 10:17:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12717EDF; Thu, 31 Jul 2014 10:17:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 00A282697; Thu, 31 Jul 2014 10:17:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s6VAHPPB002774; Thu, 31 Jul 2014 10:17:25 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s6VAHPBO002772; Thu, 31 Jul 2014 10:17:25 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407311017.s6VAHPBO002772@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 31 Jul 2014 10:17:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363564 - 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.18 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: Thu, 31 Jul 2014 10:17:26 -0000 Author: bapt Date: Thu Jul 31 10:17:25 2014 New Revision: 363564 URL: http://svnweb.freebsd.org/changeset/ports/363564 QAT: https://qat.redports.org/buildarchive/r363564/ Log: Prehistoric ld(1) (in FreeBSD 8) ldscript support is not fully compatible with medieval ld(1) (in FreeBSD 9+) or modern ld(1). Falls back into the regular symlink The issues solved by the ldscript is anyway not affecting the caveld(1) because it is anyway overlinking all over the place Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Thu Jul 31 10:06:07 2014 (r363563) +++ head/devel/ncurses/Makefile Thu Jul 31 10:17:25 2014 (r363564) @@ -124,10 +124,12 @@ post-install: . for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ . endfor +.if ${OSTYP} != FreeBSD || ${OSVERSION} > 900000 ${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 +.endif ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.5.9 .include