From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 12 13:10:00 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 B921E7B0 for ; Wed, 12 Feb 2014 13:10:00 +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 8B21B1FCA for ; Wed, 12 Feb 2014 13:10:00 +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 s1CDA09S014592 for ; Wed, 12 Feb 2014 13:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1CDA02a014591; Wed, 12 Feb 2014 13:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 12 Feb 2014 13:10:00 GMT Resent-Message-Id: <201402121310.s1CDA02a014591@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tijl Coosemans 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 48680635 for ; Wed, 12 Feb 2014 13:04:16 +0000 (UTC) Received: from mailrelay003.isp.belgacom.be (mailrelay003.isp.belgacom.be [195.238.6.53]) by mx1.freebsd.org (Postfix) with ESMTP id CF7B31F95 for ; Wed, 12 Feb 2014 13:04:15 +0000 (UTC) Received: from 37.145-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.145.37]) by relay.skynet.be with ESMTP; 12 Feb 2014 14:03:55 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.7/8.14.7) with ESMTP id s1CD3rnW084884 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Wed, 12 Feb 2014 14:03:54 +0100 (CET) (envelope-from tijl@kalimero.tijl.coosemans.org) Received: (from tijl@localhost) by kalimero.tijl.coosemans.org (8.14.7/8.14.7/Submit) id s1CD3r29084883; Wed, 12 Feb 2014 14:03:53 +0100 (CET) (envelope-from tijl) Message-Id: <201402121303.s1CD3r29084883@kalimero.tijl.coosemans.org> Date: Wed, 12 Feb 2014 14:03:53 +0100 (CET) From: Tijl Coosemans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186688: [patch] devel/libslang2: fix iconv detection 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: Wed, 12 Feb 2014 13:10:00 -0000 >Number: 186688 >Category: ports >Synopsis: [patch] devel/libslang2: fix iconv detection >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 12 13:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Tijl Coosemans >Release: FreeBSD 11.0-CURRENT i386 >Organization: >Environment: >Description: The configure script has some simple tests that pick up libiconv.so when it is installed on FreeBSD 10, but the base system iconv should be used instead. The attached patch adds --without-iconv to CONFIGURE_ARGS so these tests are bypassed and the configure script falls back on a more standard iconv test that does work correctly. >How-To-Repeat: >Fix: --- libslang2.patch begins here --- Index: devel/libslang2/Makefile =================================================================== --- devel/libslang2/Makefile (revision 343867) +++ devel/libslang2/Makefile (working copy) @@ -2,7 +2,7 @@ PORTNAME= libslang2 PORTVERSION= 2.2.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= ftp://space.mit.edu/pub/davis/slang/v${PORTVERSION:R}/ \ ftp://ftp.fu-berlin.de/pub/unix/misc/slang/v${PORTVERSION:R}/ \ @@ -22,7 +22,7 @@ GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes PLIST_SUB+= SHLIB_VERSION=${PORTVERSION} -CONFIGURE_ARGS+=--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig +CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig --without-iconv ALL_TARGET= all static INSTALL_TARGET= install install-static @@ -42,7 +42,6 @@ PCRE_CONFIGURE_WITH= pcre PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre PNG_CONFIGURE_WITH= png PNG_LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png -ICONV_CONFIGURE_WITH= iconv ICONV_USES= iconv ONIG_CONFIGURE_WITH= onig ONIG_LIB_DEPENDS= libonig.so:${PORTSDIR}/devel/oniguruma4 --- libslang2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: