From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 27 16:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A6ED184 for ; Thu, 27 Feb 2014 16:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 66018147A for ; Thu, 27 Feb 2014 16:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1RG01EA009476 for ; Thu, 27 Feb 2014 16:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1RG01tn009475; Thu, 27 Feb 2014 16:00:01 GMT (envelope-from gnats) Date: Thu, 27 Feb 2014 16:00:01 GMT Message-Id: <201402271600.s1RG01tn009475@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Tijl Coosemans Subject: Re: ports/186948: www/netsurf: ia64 11-current build failure: /usr/local/lib/libiconv.so.3: invalid DSO for symbol `libiconv' definition X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Tijl Coosemans List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 16:00:01 -0000 The following reply was made to PR ports/186948; it has been noted by GNATS. From: Tijl Coosemans To: bug-followup@FreeBSD.org, mexas@bris.ac.uk Cc: Subject: Re: ports/186948: www/netsurf: ia64 11-current build failure: /usr/local/lib/libiconv.so.3: invalid DSO for symbol `libiconv' definition Date: Thu, 27 Feb 2014 16:54:07 +0100 --MP_/A8xGFKKvQyRkIy6SL0+26tL Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, Please try the attached patch. --MP_/A8xGFKKvQyRkIy6SL0+26tL Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=netsurf.patch Index: www/netsurf/Makefile =================================================================== --- www/netsurf/Makefile (revision 346335) +++ www/netsurf/Makefile (working copy) @@ -46,6 +46,8 @@ LIB_DEPENDS+= libssl.so:${PORTSDIR}/secu BUILD_DEPENDS+= gperf:${PORTSDIR}/devel/gperf .endif +.include + post-patch: @${REINPLACE_CMD} '/^NSFB_LINUX_AVAILABLE/ s|yes|no| ; s| -g||' \ ${WRKSRC}/src/libnsfb-${NSFB_VERSION}/Makefile @@ -62,6 +64,10 @@ post-patch: do-configure: @${CP} ${FILESDIR}/Makefile.config ${WRKSRC}/src/netsurf-${PORTVERSION} +.if empty(ICONV_LIB) + @${REINPLACE_CMD} '/NETSURF_USE_LIBICONV_PLUG/ s|NO|YES|' \ + ${WRKSRC}/src/netsurf-${PORTVERSION}/Makefile.config +.endif .if ${PORT_OPTIONS:MGSTREAMER} @${REINPLACE_CMD} '/NETSURF_USE_VIDEO/ s|NO|YES|' \ ${WRKSRC}/src/netsurf-${PORTVERSION}/Makefile.config @@ -71,4 +77,4 @@ do-configure: ${WRKSRC}/src/netsurf-${PORTVERSION}/Makefile.config .endif -.include +.include --MP_/A8xGFKKvQyRkIy6SL0+26tL--