diff options
author | danfe <danfe@FreeBSD.org> | 2013-02-22 21:43:40 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-02-22 21:43:40 +0800 |
commit | 9404a73944709ec40af6b18538a685466d004c99 (patch) | |
tree | 86195abb8401d1ea5235f5f226133aa322b42f52 /multimedia/handbrake | |
parent | e12c568bbac9b0df6a0ef9bf7ec6283519d907b1 (diff) | |
download | freebsd-ports-gnome-9404a73944709ec40af6b18538a685466d004c99.tar.gz freebsd-ports-gnome-9404a73944709ec40af6b18538a685466d004c99.tar.zst freebsd-ports-gnome-9404a73944709ec40af6b18538a685466d004c99.zip |
- 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
Diffstat (limited to 'multimedia/handbrake')
-rw-r--r-- | multimedia/handbrake/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/multimedia/handbrake/Makefile b/multimedia/handbrake/Makefile index 3ea0cdcdebe9..f22d826c6caa 100644 --- a/multimedia/handbrake/Makefile +++ b/multimedia/handbrake/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: HandBrake -# Date created: 19 November 2004 -# Whom: Andrew Thompson <andy@fud.org.nz> -# +# Created by: Andrew Thompson <andy@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 |