early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,36 @@
diff --git a/gen.tab/meson.build b/gen.tab/meson.build
index 8c21e98..1cd9960 100644
--- a/gen.tab/meson.build
+++ b/gen.tab/meson.build
@@ -1,5 +1,10 @@
# gen.tab
+if get_option('pregenerated_tab') != ''
+ generated_tab_include_files = []
+ fribidi_unicode_version_h = files()
+ add_project_arguments('-I' + get_option('pregenerated_tab'), language: 'c')
+else
native_cc = meson.get_compiler('c')
# Don't pick up top-level config.h, as that has defines for the cross-compiler
@@ -75,7 +80,10 @@ foreach tab : tabs
input: gen_prog_inputs,
output: gen_prog_out,
command: [gen_exe, COMPRESSION, '@INPUT@', gen_prog_name],
+ install: true,
+ install_dir: 'share/fribidi/gen.tab',
capture: true)
generated_tab_include_files += [tab_inc_file]
endforeach
+endif
diff --git a/meson_options.txt b/meson_options.txt
index f54a639..8f60205 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -8,3 +8,5 @@ option('tests', type : 'boolean', value : true,
description: 'Build tests')
option('fuzzer_ldflags', type : 'string',
description: 'Extra LDFLAGS used during linking of fuzzing binaries')
+option('pregenerated_tab', type: 'string',
+ description: 'Path to pregenerated table sources')

56
externals/vcpkg/ports/fribidi/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,56 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO fribidi/fribidi
REF v1.0.12
SHA512 a3a63e1dde1cffb097376df0b34522700cff600da61bdafd6f4f50db6937383b9f73a82081cb1a7f2e1946ba07fea13e2880a4250b1508850bffa500046a7fa5
HEAD_REF master
PATCHES meson-crosscompile.patch
)
set(gen_tab_subdir "share/${PORT}/gen.tab")
set(options "")
if(VCPKG_CROSSCOMPILING)
set(gen_tab "${CURRENT_HOST_INSTALLED_DIR}/${gen_tab_subdir}")
cmake_path(NATIVE_PATH gen_tab gen_tab)
set(options "-Dpregenerated_tab=${gen_tab}")
endif()
vcpkg_configure_meson(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
${options}
-Ddocs=false
-Dbin=false
-Dtests=false
)
vcpkg_install_meson()
vcpkg_fixup_pkgconfig()
vcpkg_copy_pdbs()
# Define static macro
file(READ "${CURRENT_PACKAGES_DIR}/include/fribidi/fribidi-common.h" FRIBIDI_COMMON_H)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
string(REPLACE "#ifndef FRIBIDI_LIB_STATIC" "#if 0" FRIBIDI_COMMON_H "${FRIBIDI_COMMON_H}")
else()
string(REPLACE "#ifndef FRIBIDI_LIB_STATIC" "#if 1" FRIBIDI_COMMON_H "${FRIBIDI_COMMON_H}")
endif()
file(WRITE "${CURRENT_PACKAGES_DIR}/include/fribidi/fribidi-common.h" "${FRIBIDI_COMMON_H}")
if(VCPKG_CROSSCOMPILING)
file(
COPY "${gen_tab}/fribidi-unicode-version.h"
DESTINATION "${CURRENT_PACKAGES_DIR}/include/fribidi"
)
else()
file(
COPY "${CURRENT_PACKAGES_DIR}/include/fribidi/fribidi-unicode-version.h"
DESTINATION "${CURRENT_PACKAGES_DIR}/${gen_tab_subdir}"
)
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
# Handle copyright
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

16
externals/vcpkg/ports/fribidi/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,16 @@
{
"name": "fribidi",
"version": "1.0.12",
"description": "GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi)",
"supports": "!uwp",
"dependencies": [
{
"name": "fribidi",
"host": true
},
{
"name": "vcpkg-tool-meson",
"host": true
}
]
}