From owner-svn-ports-all@freebsd.org Fri Nov 22 00:50:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EE2691CFA5B; Fri, 22 Nov 2019 00:50:07 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47JyWg5YrDz49N4; Fri, 22 Nov 2019 00:50:07 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A260A1BBC9; Fri, 22 Nov 2019 00:50:07 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAM0o7Qo025717; Fri, 22 Nov 2019 00:50:07 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAM0o6Qd025713; Fri, 22 Nov 2019 00:50:06 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201911220050.xAM0o6Qd025713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Fri, 22 Nov 2019 00:50:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518120 - in head/games: . mancala X-SVN-Group: ports-head X-SVN-Commit-Author: jgh X-SVN-Commit-Paths: in head/games: . mancala X-SVN-Commit-Revision: 518120 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Nov 2019 00:50:08 -0000 Author: jgh Date: Fri Nov 22 00:50:06 2019 New Revision: 518120 URL: https://svnweb.freebsd.org/changeset/ports/518120 Log: Add new port: games/mancala Implementation of the simple board game called Mancala. Contains both a user unfriendly character based interface, and a nice, user friendly X11 interface. Be warned: If you just bother to read the rules, you may get hooked on this! Added: head/games/mancala/ head/games/mancala/Makefile (contents, props changed) head/games/mancala/distinfo (contents, props changed) head/games/mancala/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Fri Nov 22 00:39:22 2019 (r518119) +++ head/games/Makefile Fri Nov 22 00:50:06 2019 (r518120) @@ -548,6 +548,7 @@ SUBDIR += mahjong SUBDIR += maitretarot SUBDIR += manaplus + SUBDIR += mancala SUBDIR += mangband SUBDIR += mari0 SUBDIR += marsnomercy Added: head/games/mancala/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/mancala/Makefile Fri Nov 22 00:50:06 2019 (r518120) @@ -0,0 +1,46 @@ +# Created by: Jason Helfman +# $FreeBSD$ + +PORTNAME= mancala +PORTVERSION= 1.0.3 +CATEGORIES= games +MASTER_SITES= https://shh.thathost.com/pub-unix/files/ + +MAINTAINER= jgh@FreeBSD.org +COMMENT= Implementation of the simple board game called Mancala + +LICENSE= ART10 + +USES= gmake + +OPTIONS_DEFINE= DOCS X11 +OPTIONS_DEFAULT= X11 + +PORTDOCS= * +PLIST_FILES= bin/mancala +X11_LIB_DEPENDS= libforms.so:x11-toolkits/xforms +X11_PLIST_FILES= bin/xmancala +X11_ALL_TARGET= xmancala +ALL_TARGET= mancala + +post-patch: + @${REINPLACE_CMD} -e 's|gcc|${CC}|' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|^XINCDIR.*|XINCDIR = -I${LOCALBASE}/include|' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|^XLIBDIR.*|XLIBDIR = -L${LOCALBASE}/lib|' \ + ${WRKSRC}/Makefile + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for doc in ChangeLog INSTALL NEWS README RULES + ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} +.endfor + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +do-install-X11-on: + ${INSTALL_SCRIPT} ${WRKSRC}/x${PORTNAME} ${STAGEDIR}${PREFIX}/bin/x${PORTNAME} + +.include Added: head/games/mancala/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/mancala/distinfo Fri Nov 22 00:50:06 2019 (r518120) @@ -0,0 +1,3 @@ +TIMESTAMP = 1572042290 +SHA256 (mancala-1.0.3.tar.gz) = ca9fcacb687caea88a16d8ed0eacbbcc96235d591764c3ed92e9843a5f64eee8 +SIZE (mancala-1.0.3.tar.gz) = 16516 Added: head/games/mancala/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/mancala/pkg-descr Fri Nov 22 00:50:06 2019 (r518120) @@ -0,0 +1,5 @@ +Implementation of the simple board game called Mancala. Contains both a user +unfriendly character based interface, and a nice, user friendly X11 interface. +Be warned: If you just bother to read the rules, you may get hooked on this! + +WWW: https://shh.thathost.com/pub-unix