From owner-freebsd-ports@FreeBSD.ORG Wed Jan 14 11:36:29 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E3A8E7C for ; Wed, 14 Jan 2015 11:36:29 +0000 (UTC) Received: from mail-lb0-x234.google.com (mail-lb0-x234.google.com [IPv6:2a00:1450:4010:c04::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 04F71380 for ; Wed, 14 Jan 2015 11:36:29 +0000 (UTC) Received: by mail-lb0-f180.google.com with SMTP id l4so7389892lbv.11 for ; Wed, 14 Jan 2015 03:36:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=vJa2rY/apxcUgFSFnfrBG36mlM3ZuWNLgGX1MKYQmKM=; b=N+L4FeRn9O126YjMtWIrUA0Gs3NSzD1r5LT0OcqKXWEJbxk658pGzwMPlqOtOFeCFz GLgTApPwfKzkwzxLPqoSlpCAs13aXhwuDA7/G9Qc0vGDkn2DR4yEa9J6avJA5Y2Uoa/h OxRnn2dnKhQXF1vBOvYPubppfNGi+sJ0n+xsX4RIXc4+cjitTEPGlNJu6ymb3p+NAE/4 wY9KFnheX9OkYyDRRylH0i7EzuJinJvGCKdZDMjwfBLAmaZGh6SsECq4F3L8rafkb+Ka /vdwcntm13IJVDEJDaPv5MdNUE0oP7SK7VRHPrap5ebLfxngnh21zQsXai2dxZpw6hpR y/Jg== X-Received: by 10.152.23.38 with SMTP id j6mr3367990laf.81.1421235386973; Wed, 14 Jan 2015 03:36:26 -0800 (PST) Received: from [172.29.2.131] (altimet-gw.cs2.dp.wnet.ua. [217.20.178.249]) by mx.google.com with ESMTPSA id h7sm5800688lbl.41.2015.01.14.03.36.25 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 14 Jan 2015 03:36:26 -0800 (PST) Message-ID: <54B654B0.6020508@gmail.com> Date: Wed, 14 Jan 2015 13:36:16 +0200 From: Vitaly Magerya User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Jan Beich Subject: Re: mypaint References: <4332122.R2hTBFfxOS@lumiwa.farms.net> <54B2C8FB.2040601@gmail.com> <1799385.DexCJMgr9b@lumiwa.farms.net> <3335351.IokthlFiqL@lumiwa.farms.net> <54B3D3B8.9060309@gmail.com> In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: lumiwa@gmail.com, FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jan 2015 11:36:29 -0000 On 2015-01-12 20:16, Jan Beich wrote: > I think the following are relevant patches from bugzilla. > > Index: Mk/Uses/scons.mk > =================================================================== > --- Mk/Uses/scons.mk (revision 376385) > +++ Mk/Uses/scons.mk (working copy) > @@ -17,6 +17,8 @@ IGNORE= Incorrect 'USES+= scons:${scons_ARGS}' sco > MAKEFILE= # > MAKE_FLAGS= # > ALL_TARGET= # > +CCFLAGS?= ${CFLAGS} > +LINKFLAGS?= ${LDFLAGS} > LIBPATH?= ${LOCALBASE}/lib > CPPPATH?= ${LOCALBASE}/include > SCONS= ${LOCALBASE}/bin/scons > Index: graphics/mypaint/Makefile > =================================================================== > --- graphics/mypaint/Makefile (revision 376385) > +++ graphics/mypaint/Makefile (working copy) > @@ -22,7 +22,7 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} \ > > USE_GNOME= glib20 pygtk2 > MAKE_ARGS= prefix="${PREFIX}" > -USES= gettext pkgconfig scons tar:bzip2 python > +USES= compiler:gcc-c++11-lib gettext pkgconfig scons tar:bzip2 python > INSTALLS_ICONS= yes > > SUB_FILES= pkg-install > > ------------------------------------------------- Yup, this fixes the problem. Thank you.