From owner-svn-ports-all@freebsd.org Tue Sep 13 14:19:02 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 0205BBD9FDF; Tue, 13 Sep 2016 14:19:02 +0000 (UTC) (envelope-from mat@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 ACB1025E; Tue, 13 Sep 2016 14:19:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DEJ0kr095818; Tue, 13 Sep 2016 14:19:00 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DEJ08H095817; Tue, 13 Sep 2016 14:19:00 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609131419.u8DEJ08H095817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 13 Sep 2016 14:19:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422010 - head/www/p5-Gtk2-WebKit 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: Tue, 13 Sep 2016 14:19:02 -0000 Author: mat Date: Tue Sep 13 14:19:00 2016 New Revision: 422010 URL: https://svnweb.freebsd.org/changeset/ports/422010 Log: Attempt at fixing the port for FreeBSD 9. It still fails, but it is getting closer. The build error is: /usr/local/bin/perl5 -I blib/lib -I blib/arch -MGlib::GenPod -MGtk2::WebKit -e "add_types (qq(\/usr\/local\/lib\/perl5\/site_perl\/mach\/5\.20\/Glib\/Install\/doctypes), qq(\/usr\/local\/lib\/perl5\/site_perl\/mach\/5\.20\/Cairo\/Install\/doctypes), qq(\/usr\/local\/lib\ /perl5\/site_perl\/mach\/5\.20\/Pango\/Install\/doctypes), qq(\/usr\/local\/lib\/perl5\/site_perl\/mach\/5\.20\/Gtk2\/Install\/doctypes)); Glib::GenPod::set_copyright(qq/Copyright (C) 2008, Florian Ragwitz/); Glib::GenPod::set_main_mod(qq(Gtk2::WebKit)); xsdoc2pod(q(bui ld/doc.pl), q(blib/lib), q(build/podindex));" Can't load 'blib/arch/auto/Gtk2/WebKit/WebKit.so' for module Gtk2::WebKit: /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.14 required by /usr/local/lib/libwebkitgtk-1.0.so.0 not found at /usr/local/lib/perl5/5.20/mach/DynaLoader.pm line 193. at -e line 0. Compilation failed in require. BEGIN failed--compilation aborted. *** [build/podindex] Error code 2 Sponsored by: Absolight Modified: head/www/p5-Gtk2-WebKit/Makefile (contents, props changed) Modified: head/www/p5-Gtk2-WebKit/Makefile ============================================================================== --- head/www/p5-Gtk2-WebKit/Makefile Tue Sep 13 14:18:54 2016 (r422009) +++ head/www/p5-Gtk2-WebKit/Makefile Tue Sep 13 14:19:00 2016 (r422010) @@ -25,7 +25,11 @@ MAKE_JOBS_UNSAFE= yes # blocked since 2010. Remove to see if it works on all systems again #NO_PACKAGE= Man page creation hangs on some systems for unknown reasons -USES= perl5 +USES= compiler:c++11-lib perl5 USE_PERL5= configure +CONFIGURE_ARGS= LDFLAGS="${LDFLAGS}" LD=${CC} +MAKE_ARGS= OTHERLDFLAGS="${LDFLAGS}" + +BROKEN_FreeBSD_9= Perl messes up the linking .include