From owner-svn-ports-head@FreeBSD.ORG Tue Apr 28 17:46:26 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC1FC1F6; Tue, 28 Apr 2015 17:46: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 813051EB4; Tue, 28 Apr 2015 17:46: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 t3SHkQ9j012730; Tue, 28 Apr 2015 17:46:26 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3SHkQeg012728; Tue, 28 Apr 2015 17:46:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201504281746.t3SHkQeg012728@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 28 Apr 2015 17:46:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384925 - in head/devel: gdb66 insight 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: Tue, 28 Apr 2015 17:46:26 -0000 Author: jbeich Date: Tue Apr 28 17:46:25 2015 New Revision: 384925 URL: https://svnweb.freebsd.org/changeset/ports/384925 Log: Don't use profiling and static libreadline after r344754 gdb66 and insight neither build with -pg nor link any other _p library. For profiling to work the ports may also need to disable stripping of non-debug symbols, build with -fno-omit-frame-pointer and do so for all the dependencies as well. poudriere fails because before 9.0R proflibs were packaged separately not in DIST list for |jail -c|, and 11.0C removed libreadline while devel/readline doesn't provide _p variant. Reported by: pkg-fallout (-quaterly lacks 84* and head* slaves) Approved by: portmgr blanket MFH: 2015Q2 Modified: head/devel/gdb66/Makefile head/devel/insight/Makefile Modified: head/devel/gdb66/Makefile ============================================================================== --- head/devel/gdb66/Makefile Tue Apr 28 17:36:29 2015 (r384924) +++ head/devel/gdb66/Makefile Tue Apr 28 17:46:25 2015 (r384925) @@ -3,7 +3,7 @@ PORTNAME= gdb PORTVERSION= 6.6 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:S,$,:gdb,} \ http://aldan.algebra.com/~mi/:gdbtk @@ -86,7 +86,7 @@ post-patch: -e 's/^readline/#readline/' \ -e 's,^LIBICONV =.*,LIBICONV=-L${LOCALBASE}/lib ${ICONV_LIB},' \ ${WRKSRC}/gdb/Makefile.in - ${ECHO} 'READLINE = -lreadline_p' >> ${WRKSRC}/gdb/Makefile.in + ${ECHO} 'READLINE = -lreadline' >> ${WRKSRC}/gdb/Makefile.in do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb ${STAGEDIR}${PREFIX}/bin/gdb${VER} Modified: head/devel/insight/Makefile ============================================================================== --- head/devel/insight/Makefile Tue Apr 28 17:36:29 2015 (r384924) +++ head/devel/insight/Makefile Tue Apr 28 17:46:25 2015 (r384925) @@ -1,7 +1,7 @@ # Created by: Mikhail Teterin # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 MAINTAINER= mi@aldan.algebra.com COMMENT= Gnu debugger with the Insight GUI front-end