Bug 181685

Summary: games/ufoai - missing library dependency
Product: Ports & Packages Reporter: ken
Component: Individual Port(s)Assignee: Jose Alonso Cardenas Marquez <acm>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description ken 2013-08-30 15:50:00 UTC
games/ufoai has a missing runtime dependency of libmxmxl.so
textproc/mxml is already listed as a build dependency for games/ufoai, but this results in the necessary library being removed during cleanup.

Fix: 

The textproc/mxml port should either be listed under LIB_DEPENDS or RUN_DEPENDS in addition to the current BUILD_DEPENDS in the game/ufoai Makefile.
How-To-Repeat: Build and run games/ufoai in a clean environment.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-08-30 15:50:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->acm

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-01 01:07:01 UTC
Author: acm
Date: Tue Oct  1 00:06:54 2013
New Revision: 328910
URL: http://svnweb.freebsd.org/changeset/ports/328910

Log:
  - Add missing dependency
  - Bump PORTREVISION
  
  PR:		181685
  Submitted by:	Ken Moore <ken _ at __ pcbsd.org>

Modified:
  head/games/ufoai/Makefile

Modified: head/games/ufoai/Makefile
==============================================================================
--- head/games/ufoai/Makefile	Tue Oct  1 00:03:57 2013	(r328909)
+++ head/games/ufoai/Makefile	Tue Oct  1 00:06:54 2013	(r328910)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ufoai
 PORTVERSION=	2.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games
 MASTER_SITES=	SF/${PORTNAME}/UFO_AI%202.x/${PORTVERSION}
 DISTNAME=	${PORTNAME:S/$/-/}${PORTVERSION}-source
@@ -18,7 +18,8 @@ LIB_DEPENDS=	vorbis:${PORTSDIR}/audio/li
 		curl:${PORTSDIR}/ftp/curl \
 		execinfo:${PORTSDIR}/devel/libexecinfo \
 		theora.0:${PORTSDIR}/multimedia/libtheora \
-		xvidcore.4:${PORTSDIR}/multimedia/xvid
+		xvidcore.4:${PORTSDIR}/multimedia/xvid \
+		mxml:${PORTSDIR}/textproc/mxml
 BUILD_DEPENDS=	${LOCALBASE}/include/mxml.h:${PORTSDIR}/textproc/mxml
 RUN_DEPENDS=	${LOCALBASE}/share/${PORTNAME}/base/default.cfg:${PORTSDIR}/games/ufoai-data
 
_______________________________________________
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 Jose Alonso Cardenas Marquez freebsd_committer freebsd_triage 2013-10-01 01:07:07 UTC
State Changed
From-To: open->closed

- Committed thanks!!