Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Aug 2013 07:52:13 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324890 - head/games/freetennis
Message-ID:  <201308180752.r7I7qDZt081938@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sun Aug 18 07:52:13 2013
New Revision: 324890
URL: http://svnweb.freebsd.org/changeset/ports/324890

Log:
  games/freetennis: Adjust dependencies
  
  There were a few problems with the dependency definitions of freetennis.
  The ocaml-images dependency is a static build dependency, and not a RUN
  DEPENDS.  Secondly, a specific static library is specified, but no
  library of that name exists, at least not for the upcoming ocaml-images
  4.0.  Freetennis really wants the entire directory, so ocaml-images has
  been changed to a package depends instead of a file depends.  It's been
  tested with ocaml-images 4.0 (DragonFly) and ocaml-images 3.0 (FreeBSD/
  Redports).
  
  Approved by:	bapt/culot (mentors, implicit)

Modified:
  head/games/freetennis/Makefile

Modified: head/games/freetennis/Makefile
==============================================================================
--- head/games/freetennis/Makefile	Sun Aug 18 07:02:23 2013	(r324889)
+++ head/games/freetennis/Makefile	Sun Aug 18 07:52:13 2013	(r324890)
@@ -3,7 +3,7 @@
 
 PORTNAME=	freetennis
 PORTVERSION=	0.4.8
-PORTREVISION=	8
+PORTREVISION=	9
 CATEGORIES=	games
 MASTER_SITES=	SF
 
@@ -11,12 +11,12 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Tennis simulation
 
 BUILD_DEPENDS=	ocamlopt:${PORTSDIR}/lang/ocaml \
+		ocaml-images>3.0:${PORTSDIR}/graphics/ocaml-images \
 		${OCAML_DEPENDS}
 RUN_DEPENDS=	${OCAML_DEPENDS}
 
 OCAML_DEPENDS=	${LOCALBASE}/lib/ocaml/site-lib/lablgtk2/gtk.ml:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 \
 		${LOCALBASE}/lib/ocaml/lablGL/gl.ml:${PORTSDIR}/graphics/ocaml-lablgl \
-		${LOCALBASE}/lib/ocaml/site-lib/camlimages/camlimages.a:${PORTSDIR}/graphics/ocaml-images \
 		${LOCALBASE}/lib/ocaml/site-lib/sdl/sdl.mli:${PORTSDIR}/devel/ocaml-sdl
 
 USE_BZIP2=	yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308180752.r7I7qDZt081938>