Date: Tue, 28 Apr 2015 17:46:26 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384925 - in head/devel: gdb66 insight Message-ID: <201504281746.t3SHkQeg012728@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504281746.t3SHkQeg012728>