Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Dec 2014 15:55:40 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r374402 - head/devel/pygobject3-common
Message-ID:  <201412091555.sB9Fterk039003@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kwm
Date: Tue Dec  9 15:55:40 2014
New Revision: 374402
URL: https://svnweb.freebsd.org/changeset/ports/374402
QAT: https://qat.redports.org/buildarchive/r374402/

Log:
  Restore the UNAME_M fix which was accidently reverted in the gnome3 import.
  This fixes the build on architechtures where MACHINE and MACHINE_ARCH to
  differ. But put it in the -common port so it shared between both versions
  of py-gobject3. [1]
  
  Work around python plist issue [2]
  
  PR:		188856 [1], 195342 [2], 195738 [2], 195748 [2]
  Sumbitted by:	sbruno [1], mva[2]

Modified:
  head/devel/pygobject3-common/Makefile

Modified: head/devel/pygobject3-common/Makefile
==============================================================================
--- head/devel/pygobject3-common/Makefile	Tue Dec  9 15:17:54 2014	(r374401)
+++ head/devel/pygobject3-common/Makefile	Tue Dec  9 15:55:40 2014	(r374402)
@@ -30,7 +30,10 @@ CONFLICTS=	py*-gtk-0* py*-gobject-2.*.[0
 		py*-gobject-2.*.6_1
 
 PLIST_SUB=	ARCH=${ARCH} UNAME_R=${UNAME_R} VERSION=${PORTVERSION} \
-		OPSYS=${OPSYS:tl}
+		OPSYS=${OPSYS:tl} UNAME_M=${UNAME_M}
+
+# Override PYTHON_VERSION from DEPENDS_ARGS
+MAKE_ARGS=	PYTHON_VERSION=${PYTHON_VER}
 
 .if ${SLAVE_PORT} == no
 BUILD_DEPENDS+=	${LOCALBASE}/libdata/pkgconfig/pycairo.pc:${PORTSDIR}/graphics/py-cairo
@@ -70,5 +73,6 @@ post-install:
 .include <bsd.port.pre.mk>
 
 UNAME_R!=	${UNAME} -r
+UNAME_M!=	${UNAME} -m
 
 .include <bsd.port.post.mk>



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