New port: games/orthobot: Perspective puzzle game

Literally bridging the gap between 2D and 3D games, Ortho Robot is a
perspective based puzzle game, where you flatten the view to move across
gaps.  Your objective is to reach the ending green block (either by
standing directly on it or standing on it in relative space). For some
extra challenge, try to collect all coins and perfect your time, steps and
number of warps.

WWW: http://stabyourself.net/orthorobot/
This commit is contained in:
Mateusz Piotrowski 2019-04-25 16:10:13 +00:00
parent a78379c2a0
commit 12f8ff2af9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=500026
6 changed files with 57 additions and 0 deletions

View File

@ -696,6 +696,7 @@
SUBDIR += openxcom
SUBDIR += openyahtzee
SUBDIR += orbital_eunuchs_sniper
SUBDIR += orthorobot
SUBDIR += osgg
SUBDIR += outerspace
SUBDIR += p5-Acme-GuessNumber

39
games/orthorobot/Makefile Normal file
View File

@ -0,0 +1,39 @@
# $FreeBSD$
PORTNAME= orthorobot
DISTVERSIONPREFIX= v
DISTVERSION= 1.1.1-1
DISTVERSIONSUFFIX= -g48f0742
CATEGORIES= games
MAINTAINER= 0mp@FreeBSD.org
COMMENT= Perspective puzzle game
LICENSE= WTFPL
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BUILD_DEPENDS= zip:archivers/zip
# Does not work with LÖVE 11.
RUN_DEPENDS= love10:devel/love10
USE_GITHUB= yes
GH_ACCOUNT= Stabyourself
NO_ARCH= yes
SUB_FILES= ${PORTNAME} pkg-message
SUB_LIST+= LOVE_CMD=${LOVE_CMD} PORTNAME=${PORTNAME}
PLIST_FILES= bin/${PORTNAME} ${DATADIR}/${PORTNAME}.love
LOVE_CMD= ${LOCALBASE}/bin/love10
do-build:
cd ${WRKSRC} && zip -9 -r ${PORTNAME}.love .
do-install:
@${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.love ${STAGEDIR}${DATADIR}/
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1555338330
SHA256 (Stabyourself-orthorobot-v1.1.1-1-g48f0742_GH0.tar.gz) = 986e30fcb4898e33ffef2eaf6861545975ee8f6240fdd312b33c4bb19b68d119
SIZE (Stabyourself-orthorobot-v1.1.1-1-g48f0742_GH0.tar.gz) = 3403536

View File

@ -0,0 +1,4 @@
#! /bin/sh -
# $FreeBSD$
exec %%LOVE_CMD%% %%DATADIR%%/%%PORTNAME%%.love "$@"

View File

@ -0,0 +1,3 @@
Start Ortho Robot with the following command:
%%PREFIX%%/bin/orthorobot

View File

@ -0,0 +1,7 @@
Literally bridging the gap between 2D and 3D games, Ortho Robot is a
perspective based puzzle game, where you flatten the view to move across gaps.
Your objective is to reach the ending green block (either by standing directly
on it or standing on it in relative space). For some extra challenge, try to
collect all coins and perfect your time, steps and number of warps.
WWW: http://stabyourself.net/orthorobot/