Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a455f4422296
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ddd99494f010
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 6, 2021

  1. Copy the full SHA
    ddd9949 View commit details
Showing with 26 additions and 9 deletions.
  1. +26 −9 games-engines/fizmo/{fizmo-0.7.10.recipe → fizmo-0.8.5.recipe}
Original file line number Diff line number Diff line change
@@ -8,22 +8,31 @@ C-related language like C++ or Objective-C.
You'll find a huge number of adventures at http://ifarchive.org and \
http://ifdb.tads.org/"
HOMEPAGE="https://christoph-ender.de/fizmo/"
COPYRIGHT="2009–2014 Christoph Ender"
COPYRIGHT="2009–2017 Christoph Ender"
LICENSE="Fizmo"
REVISION="6"
REVISION="1"
SOURCE_URI="https://christoph-ender.de/fizmo/source/fizmo-$portVersion.tar.gz"
CHECKSUM_SHA256="0e3561492ece58ff60eba768f3b2cfa943ba111736b0f63b775e3face590462b"
CHECKSUM_SHA256="1c259a29b21c9f401c12fc24d555aca4f4ff171873be56fb44c0c9402c61beaa"

ARCHITECTURES="?all !x86_gcc2 x86"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"

commandBinDir=$binDir
commandSuffix=$secondaryArchSuffix
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin
fi

PROVIDES="
fizmo$secondaryArchSuffix = $portVersion
cmd:fizmo_console$secondaryArchSuffix = $portVersion
cmd:fizmo_ncursesw$secondaryArchSuffix = $portVersion
cmd:fizmo_console$commandSuffix = $portVersion
cmd:fizmo_ncursesw$commandSuffix = $portVersion
cmd:fizmo_sdl2$commandSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libfreetype$secondaryArchSuffix
lib:libjpeg$secondaryArchSuffix
lib:libncurses$secondaryArchSuffix
lib:libpng16$secondaryArchSuffix
@@ -35,26 +44,34 @@ REQUIRES="

BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libfreetype$secondaryArchSuffix
devel:libjpeg$secondaryArchSuffix
devel:libncurses$secondaryArchSuffix
devel:libpng16$secondaryArchSuffix
devel:libSDL2_2.0$secondaryArchSuffix
devel:libsndfile$secondaryArchSuffix
devel:libxml2$secondaryArchSuffix
devel:libX11$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoreconf
cmd:awk
cmd:find
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
cmd:pkg_config$secondaryArchSuffix
cmd:xargs
"

BUILD()
{
runConfigure ./configure --disable-x11 \
--with-jpeg-includedir=$(finddir B_SYSTEM_HEADERS_DIRECTORY)/${secondaryArchSubDir} \
--with-ncurses-includedir=$(finddir B_SYSTEM_HEADERS_DIRECTORY)/${secondaryArchSubDir}
autoreconf -vfi
runConfigure --omit-dirs binDir ./configure \
--bindir=$commandBinDir \
--disable-x11

make $jobArgs
}