update to zsxd-1.11.0

This commit is contained in:
jasper 2016-08-11 11:29:15 +00:00
parent 4a4a735353
commit 3a96edbd9e
3 changed files with 11 additions and 15 deletions

View File

@ -1,12 +1,11 @@
# $OpenBSD: Makefile,v 1.10 2015/11/05 18:49:20 jasper Exp $
# $OpenBSD: Makefile,v 1.11 2016/08/11 11:29:15 jasper Exp $
COMMENT = fan made parody Zelda game for Solarus engine
GH_ACCOUNT= christopho
GH_PROJECT= zsxd
GH_TAGNAME= ${GH_PROJECT}-1.10.1
GH_TAGNAME= ${GH_PROJECT}-1.11.0
DISTNAME= ${GH_TAGNAME}
REVISION = 0
HOMEPAGE = http://www.solarus-games.org/games/zelda-mystery-of-solarus-xd/
@ -18,6 +17,6 @@ MODULES = devel/cmake
BUILD_DEPENDS = archivers/zip
RUN_DEPENDS = games/solarus/solarus>=1.4.4
RUN_DEPENDS = games/solarus/solarus>=1.5.0
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (zsxd-1.10.1.tar.gz) = g2xhWgteX9lYaIAMBCq+A6qtWs2Pqg3SrXpsLYWQ9+0=
SIZE (zsxd-1.10.1.tar.gz) = 3690950
SHA256 (zsxd-1.11.0.tar.gz) = TG50TsxbfhI/Xghe2ZPoI0y++ARtJxfRYSGitxHgzN4=
SIZE (zsxd-1.11.0.tar.gz) = 4393467

View File

@ -1,18 +1,15 @@
$OpenBSD: patch-CMakeLists_txt,v 1.2 2015/11/05 11:31:58 jasper Exp $
$OpenBSD: patch-CMakeLists_txt,v 1.3 2016/08/11 11:29:15 jasper Exp $
From 771916b4f20b3b209ba5b46bc4cca25b7b90ec11 Mon Sep 17 00:00:00 2001
From: Christopho <christopho@solarus-games.org>
Date: Mon, 31 Aug 2015 09:56:06 +0200
Subject: [PATCH] Fix solarus executable name in quest script
ninja: error: build.ninja:111: bad $-escape (literal $ must be written as $$)
--- CMakeLists.txt.orig Sat May 9 11:00:42 2015
+++ CMakeLists.txt Thu Nov 5 12:22:30 2015
--- CMakeLists.txt.orig Thu Aug 11 13:22:36 2016
+++ CMakeLists.txt Thu Aug 11 13:22:42 2016
@@ -57,7 +57,7 @@ add_custom_target(${quest_name}_data
add_custom_command(
OUTPUT ${quest_name}
COMMAND echo '\#!/bin/sh' > ${quest_name}
- COMMAND echo 'solarus ${SOLARUS_INSTALL_ABSOLUTE_DATADIR}/${quest_name} $*' >> ${quest_name}
+ COMMAND echo 'solarus_run ${SOLARUS_INSTALL_ABSOLUTE_DATADIR}/${quest_name}' >> ${quest_name}
- COMMAND echo 'solarus-run ${SOLARUS_INSTALL_ABSOLUTE_DATADIR}/${quest_name} $*' >> ${quest_name}
+ COMMAND echo 'solarus-run ${SOLARUS_INSTALL_ABSOLUTE_DATADIR}/${quest_name} $$*' >> ${quest_name}
)
add_custom_target(${quest_name}_command
ALL