From owner-svn-ports-head@FreeBSD.ORG Wed Jun 17 12:43:07 2015 Return-Path: Delivered-To: svn-ports-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15E542C6D; Wed, 17 Jun 2015 12:43:07 +0000 (UTC) (envelope-from kwm@FreeBSD.org) 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 84B84BF4; Wed, 17 Jun 2015 12:42:41 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5HCOd65061633; Wed, 17 Jun 2015 12:24:39 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5HCOdMS061632; Wed, 17 Jun 2015 12:24:39 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201506171224.t5HCOdMS061632@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 17 Jun 2015 12:24:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389908 - head/multimedia/libv4l 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: Wed, 17 Jun 2015 12:43:07 -0000 Author: kwm Date: Wed Jun 17 12:24:38 2015 New Revision: 389908 URL: https://svnweb.freebsd.org/changeset/ports/389908 Log: Fix the build of libv4l (and v4l-utils) by requiring iconv. Don't depend on other ports to provide it. This would break when the NLS option is unset at a gloval level. Submitted by: mat@ (via his 9.x no-NLS builder) Modified: head/multimedia/libv4l/Makefile Modified: head/multimedia/libv4l/Makefile ============================================================================== --- head/multimedia/libv4l/Makefile Wed Jun 17 11:39:56 2015 (r389907) +++ head/multimedia/libv4l/Makefile Wed Jun 17 12:24:38 2015 (r389908) @@ -30,7 +30,7 @@ LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/gra GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USES+= gmake libtool pathfix pkgconfig +USES+= gmake iconv libtool pathfix pkgconfig USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-libdvbv5 \ --disable-qv4l2 \