From owner-svn-ports-all@FreeBSD.ORG Sun Aug 18 07:52:13 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E01EB23D; Sun, 18 Aug 2013 07:52:13 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CCFBB23F6; Sun, 18 Aug 2013 07:52:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7I7qD9U081939; Sun, 18 Aug 2013 07:52:13 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7I7qDZt081938; Sun, 18 Aug 2013 07:52:13 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201308180752.r7I7qDZt081938@svn.freebsd.org> From: John Marino Date: Sun, 18 Aug 2013 07:52:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324890 - head/games/freetennis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2013 07:52:14 -0000 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