Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 May 2013 12:22:29 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r318073 - in head/games: . live-f1
Message-ID:  <201305131222.r4DCMTPD003177@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <koobs@FreeBSD.org>
+# $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 <bsd.port.options.mk>
+
+.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 <bsd.port.mk>

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



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