svn commit: r431060 - in head/games: . redorblack
Nikolai Lifanov
lifanov at FreeBSD.org
Tue Jan 10 02:53:49 UTC 2017
Author: lifanov
Date: Tue Jan 10 02:53:47 2017
New Revision: 431060
URL: https://svnweb.freebsd.org/changeset/ports/431060
Log:
add games/redorblack: a simple card game
PR: 209307
Submitted by: buratello at easy.com
Reviewed by: matthew
Approved by: matthew (mentor)
Differential Revision: https://reviews.freebsd.org/D9110
Added:
head/games/redorblack/
head/games/redorblack/Makefile (contents, props changed)
head/games/redorblack/distinfo (contents, props changed)
head/games/redorblack/pkg-descr (contents, props changed)
Modified:
head/games/Makefile
Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile Tue Jan 10 02:52:51 2017 (r431059)
+++ head/games/Makefile Tue Jan 10 02:53:47 2017 (r431060)
@@ -835,6 +835,7 @@
SUBDIR += railroad-rampage
SUBDIR += redeclipse
SUBDIR += redeclipse-data
+ SUBDIR += redorblack
SUBDIR += reminiscence
SUBDIR += rescue
SUBDIR += residualvm
Added: head/games/redorblack/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/redorblack/Makefile Tue Jan 10 02:53:47 2017 (r431060)
@@ -0,0 +1,22 @@
+# Created by: buratello at easy.com
+# $FreeBSD$
+
+PORTNAME= redorblack
+PORTVERSION= 1.0
+CATEGORIES= games
+MASTER_SITES= SF/redorb/
+
+MAINTAINER= buratello at easy.com
+COMMENT= Simple card game to test fortune and probability theory
+
+LICENSE= BSD2CLAUSE
+
+PLIST_FILES= bin/redorblack
+
+do-build:
+ ${CXX} ${CXXFLAGS} -o ${WRKSRC}/redorblack ${WRKSRC}/redorblack.c
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/redorblack ${STAGEDIR}${PREFIX}/bin/
+
+.include <bsd.port.mk>
Added: head/games/redorblack/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/redorblack/distinfo Tue Jan 10 02:53:47 2017 (r431060)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1483994840
+SHA256 (redorblack-1.0.tar.gz) = 93e4faf7efd12d98a9a595e93dd030585797b1ee6dbd28c571a0d8fc44baa23f
+SIZE (redorblack-1.0.tar.gz) = 2678
Added: head/games/redorblack/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/redorblack/pkg-descr Tue Jan 10 02:53:47 2017 (r431060)
@@ -0,0 +1,3 @@
+A simple card game to test fortune and probability theory.
+
+WWW: https://sourceforge.net/projects/redorb/
More information about the svn-ports-all
mailing list