From owner-svn-ports-head@FreeBSD.ORG Sun Oct 27 18:40:09 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 4E5AFA79; Sun, 27 Oct 2013 18:40:09 +0000 (UTC) (envelope-from pawelbsd@gmail.com) Received: from mail-ea0-x22a.google.com (mail-ea0-x22a.google.com [IPv6:2a00:1450:4013:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9322325DA; Sun, 27 Oct 2013 18:40:08 +0000 (UTC) Received: by mail-ea0-f170.google.com with SMTP id q10so1412075eaj.1 for ; Sun, 27 Oct 2013 11:40:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=32kquYzMr9CB/Eaez10nHtQjsWUp5Vho7Lrwh3/WDHg=; b=RXfBoxflK/WJavZo0nE+FhAwRAxA2ryJ928Os7WhqgTCh75kuwh3zvgzfEe5Y/p3a+ Nt8q43c2ejCZqVL+EuUtdgKtPwrZ9VaDjmGqq5QgtBszDCw3dIisVdrBswi43CVQTNSR ZsO3dF9ZG7gDDFgSeF8Arvhe9+cFKfExSYLR5CQoApkI3hHeGALUxFTVl/7tgNholMey fg8wvhrvsKx/RZcKi37SyQ/WcrzXILGdRUqjQsGTQ+KJ951urRSypjMann7ebPKzFSat xHU7ErHLaXRAO916sL0I76ML0ZdW3VqRogdDP/JzM1JpY8M5UvNSxAuTZ9FXzZI3L7fr 5Zfw== X-Received: by 10.15.61.137 with SMTP id i9mr188562eex.50.1382899207006; Sun, 27 Oct 2013 11:40:07 -0700 (PDT) Received: from localhost ([176.109.164.5]) by mx.google.com with ESMTPSA id z12sm47180043eev.6.2013.10.27.11.40.05 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Sun, 27 Oct 2013 11:40:06 -0700 (PDT) Sender: =?UTF-8?B?UGF3ZcWCIFDEmWthbGE=?= Date: Sun, 27 Oct 2013 19:36:31 +0100 From: Pawel Pekala To: Gerald Pfeifer Subject: Re: svn commit: r331739 - in head/multimedia/bombono: . files Message-ID: <20131027193631.12f6a410@FreeBSD.org> In-Reply-To: References: <201310262208.r9QM8pIq066948@svn.freebsd.org> X-Mailer: Claws Mail 3.9.2 (GTK+ 2.24.19; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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: Sun, 27 Oct 2013 18:40:09 -0000 Hi, On 2013-10-27 19:16 +0100, Gerald Pfeifer wrote: >Hi Pawel, > >On Sat, 26 Oct 2013, Pawel Pekala wrote: >> +MAKE_ARGS=3D DVDREAD_INCLUDE=3D${LOCALBASE}/include \ >> + DVDREAD_LIBPATH=3D${LOCALBASE}/lib \ >> + CXXFLAGS=3D"${CXXFLAGS}" LDFLAGS=3D"${LDFLAGS}" \ >> + CC=3D"${CC}" CXX=3D"${CXX}" > > >why are you doing this? CXXFLAGS, LDFLAGS, CC and CXX all should >be set by default already. > >Checkout the following in Mk/bsd.port.mk > > MAKE_ENV+=3D PREFIX=3D${PREFIX} \ > LOCALBASE=3D${LOCALBASE} \ > LIBDIR=3D"${LIBDIR}" \ > CC=3D"${CC}" CFLAGS=3D"${CFLAGS}" \ > CPP=3D"${CPP}" CPPFLAGS=3D"${CPPFLAGS}" \ > LDFLAGS=3D"${LDFLAGS}" \ > CXX=3D"${CXX}" CXXFLAGS=3D"${CXXFLAGS}" \ > MANPREFIX=3D"${MANPREFIX}" For some reason SConstruct scripts ignores environment, when MAKE_ARGS is not set it gives me this configuration (resulting config.opts): # Compiler information CC =3D 'cc' CXX =3D 'c++' CPPFLAGS =3D '' CFLAGS =3D '' CXXFLAGS =3D '' LDFLAGS =3D '' and everything breaks... --=20 pozdrawiam / with regards Pawe=B3 P=EAkala