Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Jan 2016 23:09:37 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r405100 - in head/deskutils: py-spice-gtk spice-gtk
Message-ID:  <201601022309.u02N9b3o047257@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sat Jan  2 23:09:36 2016
New Revision: 405100
URL: https://svnweb.freebsd.org/changeset/ports/405100

Log:
  py-spice-gtk: Fix plist and unmark BROKEN.
  
  The attached patch removes the static library version of SpiceClientGtk.a from
  the port's plist. After 0.26, the spice-gtk disables static builds by default.
  I tried passing --enable-static, but the build fails:
  
  gmake[3]: Entering directory '/wrkdirs/usr/ports/deskutils/py-spice-gtk/work/spice-gtk-0.30/tests'
    CC       coroutine.o
    CC       util.o
    CC       session.o
    CCLD     coroutine
    CCLD     session
    CCLD     util
  /usr/bin/ld: undefined reference to symbol `hypot@@FBSD_1.0' (try adding -lm)
  //lib/libm.so.5: could not read symbols: Bad value
  cc: error: linker command failed with exit code 1 (use -v to see invocation)
  Makefile:719: recipe for target 'session' failed
  
  PR:		205442
  Approved by:	maintainer timeout (15 days)

Modified:
  head/deskutils/py-spice-gtk/Makefile
  head/deskutils/spice-gtk/Makefile

Modified: head/deskutils/py-spice-gtk/Makefile
==============================================================================
--- head/deskutils/py-spice-gtk/Makefile	Sat Jan  2 23:04:57 2016	(r405099)
+++ head/deskutils/py-spice-gtk/Makefile	Sat Jan  2 23:09:36 2016	(r405100)
@@ -6,6 +6,5 @@ MASTERDIR=	${.CURDIR}/../spice-gtk
 
 CONFLICTS=	spice-gtk-[0-9]*
 SPICE_SLAVE=	yes
-BROKEN=		fails to package
 
 .include "${MASTERDIR}/Makefile"

Modified: head/deskutils/spice-gtk/Makefile
==============================================================================
--- head/deskutils/spice-gtk/Makefile	Sat Jan  2 23:04:57 2016	(r405099)
+++ head/deskutils/spice-gtk/Makefile	Sat Jan  2 23:09:36 2016	(r405100)
@@ -20,13 +20,13 @@ BUILD_DEPENDS=	spice-protocol>=0.12.10:$
 		${PYTHON_PKGNAMEPREFIX}pyparsing>=2.0.1:${PORTSDIR}/devel/py-pyparsing
 
 .if defined(SPICE_SLAVE)
+PORTREVISION=	1
 CATEGORIES+=	python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}gtk2>=0:${PORTSDIR}/x11-toolkits/py-gtk2
 RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}gtk2>=0:${PORTSDIR}/x11-toolkits/py-gtk2
 CONFIGURE_ARGS+=	--with-python
-PLIST_FILES+=	%%PYTHON_SITELIBDIR%%/SpiceClientGtk.a \
-		%%PYTHON_SITELIBDIR%%/SpiceClientGtk.so
+PLIST_FILES+=	%%PYTHON_SITELIBDIR%%/SpiceClientGtk.so
 USES+=	python
 .endif
 



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