Ports: Add FreeDink port
This commit is contained in:
parent
287bbabbc1
commit
3ce4d0f89a
Notes:
sideshowbarker
2024-07-18 01:43:25 +09:00
Author: https://github.com/bcoles Commit: https://github.com/SerenityOS/serenity/commit/3ce4d0f89a9 Pull-request: https://github.com/SerenityOS/serenity/pull/10666 Reviewed-by: https://github.com/gmta Reviewed-by: https://github.com/kennethmyhra ✅
4 changed files with 53 additions and 0 deletions
Ports
|
@ -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://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/ |
|
||||
|
|
29
Ports/freedink/package.sh
Executable file
29
Ports/freedink/package.sh
Executable file
|
@ -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
Ports/freedink/patches/config.sub.patch
Normal file
10
Ports/freedink/patches/config.sub.patch
Normal file
|
@ -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
Ports/freedink/patches/input.cpp.patch
Normal file
13
Ports/freedink/patches/input.cpp.patch
Normal file
|
@ -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;
|
Loading…
Add table
Reference in a new issue