Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Jan 2015 13:39:41 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378057 - head/graphics/mypaint
Message-ID:  <201501281339.t0SDdfQg037148@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Jan 28 13:39:41 2015
New Revision: 378057
URL: https://svnweb.freebsd.org/changeset/ports/378057
QAT: https://qat.redports.org/buildarchive/r378057/

Log:
  Build using lang/gcc* to avoid runtime issues with old -lgcc_s or Clang
  
  Absence of RPATH leads to mypaint loading old libgcc_s.so.1 from base
  first which later breaks |import numpy| as libgfortran wants newer version.
  On 10.0+ the issue is masked by Clang failing to instantiate some templates.
  
  PR:		188382
  PR:		193429
  Differential Revision:	https://reviews.freebsd.org/D1616
  Approved by:	bapt (mentor)

Modified:
  head/graphics/mypaint/Makefile

Modified: head/graphics/mypaint/Makefile
==============================================================================
--- head/graphics/mypaint/Makefile	Wed Jan 28 13:21:39 2015	(r378056)
+++ head/graphics/mypaint/Makefile	Wed Jan 28 13:39:41 2015	(r378057)
@@ -3,7 +3,7 @@
 
 PORTNAME=	mypaint
 PORTVERSION=	1.1.0
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	graphics
 MASTER_SITES=	http://download.gna.org/mypaint/ \
 		http://mirror.amdmi3.ru/distfiles/
@@ -22,7 +22,8 @@ BUILD_DEPENDS:=	${RUN_DEPENDS} \
 
 USE_GNOME=	glib20 pygtk2
 MAKE_ARGS=	prefix="${PREFIX}"
-USES=		gettext pkgconfig scons tar:bzip2 python
+# XXX gcc-c++11-lib to fix runtime issues with old -lgcc_s and Clang
+USES=		compiler:gcc-c++11-lib gettext pkgconfig scons tar:bzip2 python
 INSTALLS_ICONS=	yes
 
 SUB_FILES=	pkg-install



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501281339.t0SDdfQg037148>