1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Tycho is a program to gather data on Core War warriors. Tycho takes a list of

warriors and fights each against the other. Execution logs of each instruction
executed are recorded for all fights. It prints a report in HTML format.

WWW:	http://redcoder.sourceforge.net/?p=tycho
This commit is contained in:
Alejandro Pulver 2008-01-30 04:19:34 +00:00
parent 60df7f1923
commit 849f4a2e3c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=206428
5 changed files with 50 additions and 0 deletions

View File

@ -787,6 +787,7 @@
SUBDIR += tuxtype
SUBDIR += tvp
SUBDIR += twitch
SUBDIR += tycho
SUBDIR += typespeed
SUBDIR += tyrquake
SUBDIR += ufoai

29
games/tycho/Makefile Normal file
View File

@ -0,0 +1,29 @@
# New ports collection makefile for: tycho
# Date created: 2008-01-16
# Whom: alepulver
#
# $FreeBSD$
#
PORTNAME= tycho
PORTVERSION= 0.1
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= alepulver
DISTNAME= redcoder
MAINTAINER= alepulver@FreeBSD.org
COMMENT= Program to gather data (statistics) on Core War warriors
USE_BZIP2= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= bin/tycho \
bin/tycho-exstat
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/exstat ${PREFIX}/bin/${PORTNAME}-exstat
.include <bsd.port.mk>

3
games/tycho/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (redcoder.tar.bz2) = a3a083413ba8d614f0615e4f4fa2797f
SHA256 (redcoder.tar.bz2) = d1cbae5ff55e5e9f7ed31b1eea0644ee1a008db5c0c0cf090fcaca30be7528a1
SIZE (redcoder.tar.bz2) = 153446

View File

@ -0,0 +1,12 @@
--- ./Makefile.orig Thu Sep 4 12:44:24 2003
+++ ./Makefile Wed Jan 16 19:36:13 2008
@@ -1,7 +1,7 @@
# $Id: Makefile,v 1.3 2003/09/04 15:44:24 varfar Exp $
-CC = gcc
-CFLAGS = ${OPT} ${DBG} -DSIM_STRIP_FLAGS=1
+CC ?= gcc
+CFLAGS += ${OPT} ${DBG} -DSIM_STRIP_FLAGS=1
OPT = -O4 -fomit-frame-pointer
#DBG = -g -DDEBUG=2

5
games/tycho/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
Tycho is a program to gather data on Core War warriors. Tycho takes a list of
warriors and fights each against the other. Execution logs of each instruction
executed are recorded for all fights. It prints a report in HTML format.
WWW: http://redcoder.sourceforge.net/?p=tycho