svn commit: r403165 - head/misc/py-qt4-demo

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Dec 6 21:17:53 UTC 2015


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:


More information about the svn-ports-head mailing list