Skip to content

Commit

Permalink
Ports: Add FreeDink port
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoles authored and awesomekling committed Oct 31, 2021
1 parent 287bbab commit 3ce4d0f
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions Ports/AvailablePorts.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
| [`fontconfig`](fontconfig/) | Fontconfig | 2.13.94 | https://www.freedesktop.org/wiki/Software/fontconfig/ |
| [`ffmpeg`](ffmpeg/) | ffmpeg | 4.4 | https://ffmpeg.org |
| [`freeciv`](freeciv/) | Freeciv | 3.0.0-beta2 | http:https://freeciv.org/ |
| [`freedink`](freedink/) | FreeDink | 109.6 | https://www.gnu.org/software/freedink/ |
| [`freetype`](freetype/) | FreeType | 2.10.4 | https://www.freetype.org/ |
| [`frotz`](frotz/) | Frotz | 2.53 | https://gitlab.com/DavidGriffith/frotz |
| [`gawk`](gawk/) | GNU awk | 5.1.0 | https://www.gnu.org/software/gawk/ |
Expand Down
29 changes: 29 additions & 0 deletions Ports/freedink/package.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=FreeDink
version=109.6
useconfigure="true"
depends=("SDL2" "SDL2_image" "SDL2_mixer" "SDL2_ttf" "SDL2_gfx" "gettext" "fontconfig" "glm")
workdir="freedink-${version}"
freedink_data="freedink-data-1.08.20190120"
files="https://ftpmirror.gnu.org/gnu/freedink/freedink-${version}.tar.gz freedink-${version}.tar.gz
https://ftpmirror.gnu.org/gnu/freedink/freedink-${version}.tar.gz.sig freedink-${version}.tar.gz.sig
https://ftpmirror.gnu.org/gnu/freedink/${freedink_data}.tar.gz ${freedink_data}.tar.gz 715f44773b05b73a9ec9b62b0e152f3f281be1a1512fbaaa386176da94cffb9d
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
auth_type="sig"
auth_opts=("--keyring" "./gnu-keyring.gpg" "freedink-${version}.tar.gz.sig")
configopts=("--prefix=/usr/local" "--disable-rpath" "--disable-tests" "LDFLAGS=-ldl -lfontconfig -lxml2")

resource_path="/usr/local/share/games/dink"

launcher_name="FreeDink"
launcher_category=Games
launcher_command="/usr/local/bin/freedink --software-rendering --truecolor --refdir ${resource_path}"

install() {
target_dir="${SERENITY_INSTALL_ROOT}${resource_path}"
run_nocd mkdir -p ${target_dir}
run_nocd tar zxvf ${freedink_data}.tar.gz
run_nocd cp -R ${freedink_data}/* ${target_dir}
}

export CPPFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/SDL2 -I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2"
10 changes: 10 additions & 0 deletions Ports/freedink/patches/config.sub.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
--- freedink-109.6/autotools/config.sub 2018-03-01 08:34:41.000000000 -0800
+++ freedink-109.6/autotools/config.sub 2021-04-09 10:52:45.687169960 -0700
@@ -1409,6 +1409,7 @@
# Each alternative MUST END IN A *, to match a version number.
# -sysv* is not here because it comes later, after sysvr4.
-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
+ | -serenity* \
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
| -sym* | -kopensolaris* | -plan9* \
13 changes: 13 additions & 0 deletions Ports/freedink/patches/input.cpp.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
--- freedink-109.6/src/input.cpp 2021-10-24 21:47:29.904647862 -0700
+++ freedink-109.6/src/input.cpp 2021-10-24 21:47:32.528649774 -0700
@@ -89,10 +89,6 @@
// It also keeps the mouse within the window in software mode.
SDL_SetHint(SDL_HINT_MOUSE_RELATIVE_MODE_WARP, "1");

- // TODO: don't attempt to simulate mouse events from touch events -
- // fake mouse events often are de-centered
- SDL_SetHint(SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH, "0");
-
/* Touch devices */
{
int i;

0 comments on commit 3ce4d0f

Please sign in to comment.