Dependencies are not properly decrared because RUN_DEPENDS are overwritten. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->vg Over to maintainer (via the GNATS Auto Assign Tool)
Author: daichi Date: Sun Nov 24 23:59:53 2013 New Revision: 334800 URL: http://svnweb.freebsd.org/changeset/ports/334800 Log: fixed a wrong RUN_DEPENDS PR: ports/183944 Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> Modified: head/graphics/impressive/Makefile Modified: head/graphics/impressive/Makefile ============================================================================== --- head/graphics/impressive/Makefile Sun Nov 24 23:58:13 2013 (r334799) +++ head/graphics/impressive/Makefile Sun Nov 24 23:59:53 2013 (r334800) @@ -3,7 +3,7 @@ PORTNAME= impressive PORTVERSION= 0.10.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Impressive/${PORTVERSION}/ DISTNAME= Impressive-${PORTVERSION} @@ -18,8 +18,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}open xpdf:${PORTSDIR}/graphics/xpdf \ pdftk:${PORTSDIR}/print/pdftk \ xdg-open:${PORTSDIR}/devel/xdg-utils \ - mplayer:${PORTSDIR}/multimedia/mplayer -RUN_DEPENDS= ${PYGAME} + mplayer:${PORTSDIR}/multimedia/mplayer \ + ${PYGAME} USE_PYTHON= yes USE_GHOSTSCRIPT_RUN= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!