From owner-svn-ports-head@FreeBSD.ORG Fri Feb 22 13:43:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8A481325; Fri, 22 Feb 2013 13:43:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 786B5D1; Fri, 22 Feb 2013 13:43:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1MDhfNP079508; Fri, 22 Feb 2013 13:43:41 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1MDhfdt079507; Fri, 22 Feb 2013 13:43:41 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201302221343.r1MDhfdt079507@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 22 Feb 2013 13:43:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312765 - head/multimedia/handbrake 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.14 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: Fri, 22 Feb 2013 13:43:41 -0000 Author: danfe Date: Fri Feb 22 13:43:40 2013 New Revision: 312765 URL: http://svnweb.freebsd.org/changeset/ports/312765 Log: - Look inside ${LOCALBASE} when checking if recent binutils (from ports) are installed (change as(1) to ld(1) as well, since linker is invoked directly, while assembler is not) - Trim the Makefile header while I am here Modified: head/multimedia/handbrake/Makefile Modified: head/multimedia/handbrake/Makefile ============================================================================== --- head/multimedia/handbrake/Makefile Fri Feb 22 13:36:10 2013 (r312764) +++ head/multimedia/handbrake/Makefile Fri Feb 22 13:43:40 2013 (r312765) @@ -1,9 +1,5 @@ -# New ports collection makefile for: HandBrake -# Date created: 19 November 2004 -# Whom: Andrew Thompson -# +# Created by: Andrew Thompson # $FreeBSD$ -# PORTNAME= handbrake PORTVERSION= 0.9.8 @@ -71,7 +67,7 @@ OPTIONS_DEFAULT= X11 # to support --exclude-libs option for ld(1) when building GUI program .if ${PORT_OPTIONS:MX11} || ${OSVERSION} < 802509 || \ ${OSVERSION} >= 900000 && ${OSVERSION} < 900033 -BUILD_DEPENDS+= as:${PORTSDIR}/devel/binutils +BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:${PORTSDIR}/devel/binutils CONFIGURE_ENV= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV= COMPILER_PATH=${LOCALBASE}/bin .endif