mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
51a420c867
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)
43 lines
834 B
Makefile
43 lines
834 B
Makefile
# 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>
|