Bug 183944 - [patch] graphics/impressive: Fix overwritten RUN_DEPENDS
Summary: [patch] graphics/impressive: Fix overwritten RUN_DEPENDS
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Veniamin Gvozdikov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-14 02:00 UTC by Koichiro Iwao
Modified: 2013-11-25 00:10 UTC (History)
0 users

See Also:


Attachments
file.diff (737 bytes, patch)
2013-11-14 02:00 UTC, Koichiro Iwao
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Koichiro Iwao freebsd_committer freebsd_triage 2013-11-14 02:00:00 UTC
Dependencies are not properly decrared because RUN_DEPENDS are overwritten.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-11-14 02:00:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->vg

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-11-25 00:00:01 UTC
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"
Comment 3 Daichi GOTO freebsd_committer freebsd_triage 2013-11-25 00:00:25 UTC
State Changed
From-To: open->closed

Committed. Thanks!