From owner-svn-ports-head@FreeBSD.ORG Mon May 13 12:22:30 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7C74FAFC; Mon, 13 May 2013 12:22:30 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6E8C6E96; Mon, 13 May 2013 12:22:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4DCMUA7003181; Mon, 13 May 2013 12:22:30 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4DCMTPD003177; Mon, 13 May 2013 12:22:29 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201305131222.r4DCMTPD003177@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 13 May 2013 12:22:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318073 - in head/games: . live-f1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 May 2013 12:22:30 -0000 Author: koobs Date: Mon May 13 12:22:29 2013 New Revision: 318073 URL: http://svnweb.freebsd.org/changeset/ports/318073 Log: games/live-f1: Client for the official Formula 1 Live Timing service [NEW PORT] The official Formula 1 website includes a Java client, which during races, qualifying, and practice sessions, displays the Live Timing information from the race track. Live F1 is a native client for viewing the same Live Timing feed without the need for a Java-enabled web browser. A user account on formula1.com is still required. Approved by: eadler, rm (mentors, implicit) Added: head/games/live-f1/ head/games/live-f1/Makefile (contents, props changed) head/games/live-f1/distinfo (contents, props changed) head/games/live-f1/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Mon May 13 12:14:01 2013 (r318072) +++ head/games/Makefile Mon May 13 12:22:29 2013 (r318073) @@ -562,6 +562,7 @@ SUBDIR += linux-worldofgoo-demo SUBDIR += linwarrior SUBDIR += liquidwar + SUBDIR += live-f1 SUBDIR += lm-solve SUBDIR += lmarbles SUBDIR += lmpc Added: head/games/live-f1/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/live-f1/Makefile Mon May 13 12:22:29 2013 (r318073) @@ -0,0 +1,42 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= live-f1 +PORTVERSION= 0.2.11 +CATEGORIES= games +MASTER_SITES= https://launchpad.net/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION}/+download/ +EXTRACT_SUFX= .tgz + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Native client for the official Formula 1 Live Timing service + +LICENSE= GPLv2 + +LIB_DEPENDS= neon:${PORTSDIR}/www/neon29 + +FETCH_ARGS= -pRr +WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} + +OPTIONS_DEFINE= NLS + +USES= pkgconfig gettext:build iconv +USE_GMAKE= yes +USE_OPENSSL= yes +GNU_CONFIGURE= yes +LDFLAGS+= -L${LOCALBASE}/lib + +.include + +.if ${PORT_OPTIONS:MNLS} +CONFIGURE_ARGS+= --enable-nls +.else +CONFIGURE_ARGS+= --disable-nls +.endif + +PLIST_FILES= bin/live-f1 +MAN1= live-f1.1 + +#pre-configure: +# @cd ${WRKSRC} && autopoint + +.include Added: head/games/live-f1/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/live-f1/distinfo Mon May 13 12:22:29 2013 (r318073) @@ -0,0 +1,2 @@ +SHA256 (live-f1-0.2.11.tgz) = 2aee78c55896528a85c3751b9bb821159c9652430699a577d9b50a9af214c862 +SIZE (live-f1-0.2.11.tgz) = 508172 Added: head/games/live-f1/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/live-f1/pkg-descr Mon May 13 12:22:29 2013 (r318073) @@ -0,0 +1,9 @@ +The official Formula 1 website includes a Java client, which during races, +qualifying, and practice sessions, displays the Live Timing information from +the race track. + +Live F1 is a native client for viewing the same Live Timing feed without the +need for a Java-enabled web browser. A user account on formula1.com is still +required. + +WWW: https://launchpad.net/live-f1