From owner-svn-ports-all@FreeBSD.ORG Sun Feb 16 16:38:17 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8FD5B31; Sun, 16 Feb 2014 16:38:17 +0000 (UTC) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 8E2341B2A; Sun, 16 Feb 2014 16:38:16 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 045391E007A8; Sun, 16 Feb 2014 17:38:10 +0100 (CET) Received: from enceladus10.kn-bremen.de (noident@localhost [127.0.0.1]) by enceladus10.kn-bremen.de (8.14.5/8.14.5) with ESMTP id s1GGaa9h020332; Sun, 16 Feb 2014 17:36:36 +0100 (CET) (envelope-from nox@enceladus10.kn-bremen.de) Received: (from nox@localhost) by enceladus10.kn-bremen.de (8.14.5/8.14.5/Submit) id s1GGaaWa020331; Sun, 16 Feb 2014 17:36:36 +0100 (CET) (envelope-from nox) From: Juergen Lock Date: Sun, 16 Feb 2014 17:36:35 +0100 To: Thomas Zander Subject: Re: svn commit: r344308 - in head/multimedia/handbrake: . files Message-ID: <20140216163635.GA20324@enceladus10.kn-bremen.de> References: <201402142000.s1EK0E0t008538@svn.freebsd.org> <20140214213235.GA29437@enceladus10.kn-bremen.de> <20140214215207.GA34669@enceladus10.kn-bremen.de> <20140215191349.00007330@unknown> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: "svn-ports-head@freebsd.org" , Alexander Leidinger , "svn-ports-all@freebsd.org" , Juergen Lock , "ports-committers@freebsd.org" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 16:38:17 -0000 On Sun, Feb 16, 2014 at 04:54:15PM +0100, Thomas Zander wrote: > On 15 February 2014 19:13, Alexander Leidinger wrote: > > > Not noise at all... this is a real problem. And it's not the only one. > > Could you take a look at the attached fix? > I was no longer able to reproduce any of the compile and link problems > after applying this. > (poudriere is running my CPU glowing red for some hours now...if you > find something, please let me know) > > Riggs Yes that now built. Thanx! :) Juergen > Index: Makefile > =================================================================== > --- Makefile (revision 344501) > +++ Makefile (working copy) > @@ -3,6 +3,7 @@ > > PORTNAME= handbrake > PORTVERSION= 0.9.9 > +PORTREVISION= 1 > CATEGORIES= multimedia > MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} \ > http://download.handbrake.fr/handbrake/contrib/:contrib > @@ -147,9 +148,9 @@ > @${REINPLACE_CMD} -E \ > -e 's|%%REP_CC%%|${CC}|g' \ > -e 's|%%REP_CXX%%|${CXX}|g' \ > + -e 's|%%REP_I%%|-I./contrib/include -I${LOCALBASE}/include|g' \ > + -e 's|%%REP_L%%|-L${LOCALBASE}/lib|g' \ > -e 's|%%REP_ARCHS%%|${CPUTYPE}|g' \ > - -e 's|%%REP_I%%|-I${LOCALBASE}/include|g' \ > - -e 's|%%REP_L%%|-L${LOCALBASE}/lib|g' \ > -e 's|%%REP_ICONV%%|${ICONV_LIB:S/-l//}|g' \ > ${WRKSRC}/custom.defs >