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.
Responsible Changed From-To: freebsd-ports-bugs->acm Over to maintainer (via the GNATS Auto Assign Tool)
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"
State Changed From-To: open->closed - Committed thanks!!