Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Dec 2015 08:22:47 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r403187 - branches/2015Q4/misc/py-qt4-demo
Message-ID:  <201512070822.tB78Ml9O059168@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Mon Dec  7 08:22:47 2015
New Revision: 403187
URL: https://svnweb.freebsd.org/changeset/ports/403187

Log:
  MFH: r403165
  
  py-qt4-demo: Fix runtime dependency list.
  
  r344123 broke it by replacing RUN_DEPENDS with PYQT4_RUN_DEPENDS. The latter
  has no meaning, so the port stopped depending on all other PyQt4 ports.
  
  Approved by:	ports-secteam (delphij)

Modified:
  branches/2015Q4/misc/py-qt4-demo/Makefile
Directory Properties:
  branches/2015Q4/   (props changed)

Modified: branches/2015Q4/misc/py-qt4-demo/Makefile
==============================================================================
--- branches/2015Q4/misc/py-qt4-demo/Makefile	Mon Dec  7 08:21:16 2015	(r403186)
+++ branches/2015Q4/misc/py-qt4-demo/Makefile	Mon Dec  7 08:22:47 2015	(r403187)
@@ -3,6 +3,7 @@
 
 PORTNAME=	demo
 PORTVERSION=	${PYQT4_VERSION}
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	misc devel python
 MASTER_SITES=	${MASTER_SITES_PYQT4}
@@ -21,7 +22,7 @@ EXAMPLESDIR=	${PREFIX}/share/examples/py
 .include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk"
 
 .for component in ${PYQT4_COMPONENTS:Ndemo}
-PYQT4_RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT}
 .endfor
 
 do-build:



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