Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Dec 2015 21:17:52 +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: r403165 - head/misc/py-qt4-demo
Message-ID:  <201512062117.tB6LHq0I058913@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sun Dec  6 21:17:52 2015
New Revision: 403165
URL: https://svnweb.freebsd.org/changeset/ports/403165

Log:
  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.
  
  MFH:		2015Q4

Modified:
  head/misc/py-qt4-demo/Makefile

Modified: head/misc/py-qt4-demo/Makefile
==============================================================================
--- head/misc/py-qt4-demo/Makefile	Sun Dec  6 21:09:00 2015	(r403164)
+++ head/misc/py-qt4-demo/Makefile	Sun Dec  6 21:17:52 2015	(r403165)
@@ -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?201512062117.tB6LHq0I058913>