Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Oct 2017 06:52:04 +0000 (UTC)
From:      Stefan Esser <se@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r452503 - in head/games: . open-adventure
Message-ID:  <201710200652.v9K6q4JX098360@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: se
Date: Fri Oct 20 06:52:03 2017
New Revision: 452503
URL: https://svnweb.freebsd.org/changeset/ports/452503

Log:
  New port of the "Colossal Cave Adventure", based on the last version
  released by the initial authors (Crowther & Woods). Also known as the
  430-point adventure.
  
  Approved by:	antoine (mentor)

Added:
  head/games/open-adventure/
  head/games/open-adventure/Makefile   (contents, props changed)
  head/games/open-adventure/distinfo   (contents, props changed)
  head/games/open-adventure/pkg-descr   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Fri Oct 20 05:47:26 2017	(r452502)
+++ head/games/Makefile	Fri Oct 20 06:52:03 2017	(r452503)
@@ -680,6 +680,7 @@
     SUBDIR += oneko-sakura
     SUBDIR += oolite
     SUBDIR += oonsoo
+    SUBDIR += open-adventure
     SUBDIR += openalchemist
     SUBDIR += openarena
     SUBDIR += openarena-data

Added: head/games/open-adventure/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/open-adventure/Makefile	Fri Oct 20 06:52:03 2017	(r452503)
@@ -0,0 +1,39 @@
+# Created by: Stefan Esser <se@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	open-adventure
+PORTVERSION=	1.4
+CATEGORIES=	games
+MASTER_SITES=	https://gitlab.com/${GL_ACCOUNT}/${GL_PROJECT}/repository/archive${EXTRACT_SUFX}?ref=${GL_COMMIT};/
+
+MAINTAINER=	se@FreeBSD.org
+COMMENT=	Modernized version of the original Colossal Cave Adventure game
+
+LICENSE=	BSD2CLAUSE
+
+BUILD_DEPENDS=	${PYTHONPREFIX_SITELIBDIR}/yaml/__init__.py:devel/py-yaml \
+		a2x:textproc/asciidoc
+
+ALL_TARGET=	advent
+MAKE_ENV=	CCFLAGS="${CFLAGS}"
+
+USES=		gmake pkgconfig libedit python:build
+#USE_GITLAB=	yes # When USE_GITLAB has become available, MASTER_SITES and WRKSRC should be obsolete
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${GL_COMMIT}-${GL_COMMIT}
+
+GL_ACCOUNT=	esr
+GL_PROJECT=	${PORTNAME}
+GL_COMMIT=	d51238481a6a752adc8ad4d8893209d13bb7ea91
+
+PLIST_FILES=	bin/advent man/man6/advent.6.gz
+
+pre-build:
+		cd ${WRKSRC}; ${PYTHON_CMD} make_dungeon.py; a2x -f manpage advent.adoc
+
+do-install:
+		${INSTALL_PROGRAM} ${WRKSRC}/advent ${STAGEDIR}${PREFIX}/bin
+		#${MKDIR} ${STAGEDIR}${MANPREFIX}/man/man6
+		${INSTALL_MAN} ${WRKSRC}/advent.6 ${STAGEDIR}${MANPREFIX}/man/man6
+
+.include <bsd.port.mk>

Added: head/games/open-adventure/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/open-adventure/distinfo	Fri Oct 20 06:52:03 2017	(r452503)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1508308584
+SHA256 (open-adventure-1.4.tar.gz) = 1ad9246f6b34c6dc5affff908932eaf8d76e62d60a5b871edaedd1ab4f588eed
+SIZE (open-adventure-1.4.tar.gz) = 421941

Added: head/games/open-adventure/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/open-adventure/pkg-descr	Fri Oct 20 06:52:03 2017	(r452503)
@@ -0,0 +1,8 @@
+The original Colossal Cave Adventure from 1976 was the origin of all text
+adventures, dungeon-crawl (computer) games, and computer-hosted role-playing
+games.
+
+This is the last version released by Crowther & Woods, its original authors,
+in 1995.  It has been known as "adventure 2.5" and "430-point adventure".
+
+WWW: http://www.catb.org/~esr/open-adventure/



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