svn commit: r312765 - head/multimedia/handbrake

Alexey Dokuchaev danfe at FreeBSD.org
Fri Feb 22 13:43:41 UTC 2013


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 <andy at fud.org.nz>
-#
+# Created by: Andrew Thompson <andy at fud.org.nz>
 # $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


More information about the svn-ports-head mailing list