aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/gettext/portfile.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/gettext/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/gettext/portfile.cmake')
-rw-r--r--vcpkg/ports/gettext/portfile.cmake212
1 files changed, 212 insertions, 0 deletions
diff --git a/vcpkg/ports/gettext/portfile.cmake b/vcpkg/ports/gettext/portfile.cmake
new file mode 100644
index 0000000..86b1f56
--- /dev/null
+++ b/vcpkg/ports/gettext/portfile.cmake
@@ -0,0 +1,212 @@
+# This port is just to provide gettext tools and build data, not libs.
+# The "core" feature depends on port gettext-libintl which provides libintl.
+# The "core" feature also installs enough for running autoreconf.
+# The actual tools are only enabled by opt-in features.
+# These features are typically used as a host dependency.
+# For fast builds in particular on Windows, the following choices are made:
+# - only release build type
+# - namespacing disabled (windows only)
+# - configuration cache
+# - using preinstalled gettext-libintl
+# - skipping some subdirs
+set(VCPKG_BUILD_TYPE release)
+set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
+
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://ftpmirror.gnu.org/gnu/gettext/gettext-${VERSION}.tar.gz"
+ "https://ftp.gnu.org/pub/gnu/gettext/gettext-${VERSION}.tar.gz"
+ "https://www.mirrorservice.org/sites/ftp.gnu.org/gnu/gettext/gettext-${VERSION}.tar.gz"
+ FILENAME "gettext-${VERSION}.tar.gz"
+ SHA512 d8b22d7fba10052a2045f477f0a5b684d932513bdb3b295c22fbd9dfc2a9d8fccd9aefd90692136c62897149aa2f7d1145ce6618aa1f0be787cb88eba5bc09be
+)
+
+vcpkg_extract_source_archive(SOURCE_PATH
+ ARCHIVE "${ARCHIVE}"
+ PATCHES
+ assume-modern-darwin.patch
+ uwp.patch
+ rel_path.patch
+ subdirs.patch
+ parallel-gettext-tools.patch
+ config-step-order.patch
+ 0001-xgettext-Fix-some-test-failures-on-MSVC.patch
+)
+
+set(subdirs "")
+if("runtime-tools" IN_LIST FEATURES)
+ string(APPEND subdirs " gettext-runtime")
+endif()
+if("tools" IN_LIST FEATURES)
+ string(APPEND subdirs " libtextstyle gettext-tools")
+endif()
+if(subdirs)
+ set(ENV{VCPKG_GETTEXT_SUBDIRS} "${subdirs}")
+
+ vcpkg_find_acquire_program(BISON)
+ cmake_path(GET BISON FILENAME BISON_NAME)
+ cmake_path(GET BISON PARENT_PATH BISON_PATH)
+ vcpkg_add_to_path("${BISON_PATH}")
+
+ if(VCPKG_HOST_IS_WINDOWS)
+ message(STATUS "Modifying build system for less forks")
+ set(ENV{CONFIG_SHELL} "/usr/bin/bash")
+ vcpkg_execute_required_process(
+ COMMAND "${CMAKE_COMMAND}"
+ "-DSOURCE_DIRS=.;gettext-runtime;libtextstyle;gettext-tools"
+ -P "${CMAKE_CURRENT_LIST_DIR}/bashify.cmake"
+ WORKING_DIRECTORY "${SOURCE_PATH}"
+ LOGNAME "bashify-${TARGET_TRIPLET}"
+ )
+ endif()
+
+ set(OPTIONS
+ --enable-relocatable #symbol duplication with glib-init.c?
+ --enable-c++
+ --disable-acl
+ --disable-csharp
+ --disable-curses
+ --disable-java
+ --disable-openmp
+ --disable-dependency-tracking
+ # Avoiding system dependencies and unnecessary tests
+ --with-included-glib
+ --with-included-libxml # libtextstyle won't use external libxml
+ --with-included-libunistring
+ --with-installed-libtextstyle=no
+ --without-cvs
+ --without-emacs
+ --without-git
+ --without-libcurses-prefix
+ --without-libncurses-prefix
+ --without-libtermcap-prefix
+ --without-libxcurses-prefix
+ "INTLBISON=${BISON_NAME}"
+ "TOOLS_BISON=${BISON_NAME}"
+ )
+
+ if("nls" IN_LIST FEATURES)
+ vcpkg_list(APPEND options "--enable-nls")
+ else()
+ vcpkg_list(APPEND options "--disable-nls")
+ endif()
+
+ if(VCPKG_TARGET_IS_LINUX)
+ # Cannot use gettext-libintl, empty port on linux
+ set(ENV{VCPKG_INTL} intl)
+ else()
+ # Relying on gettext-libintl
+ list(APPEND OPTIONS --with-included-gettext=no)
+ endif()
+ if(VCPKG_TARGET_IS_WINDOWS)
+ list(APPEND OPTIONS
+ # Faster, but not for export
+ --disable-namespacing
+ # Avoid unnecessary tests.
+ am_cv_func_iconv_works=yes
+ "--with-libiconv-prefix=${CURRENT_INSTALLED_DIR}"
+ "--with-libintl-prefix=${CURRENT_INSTALLED_DIR}"
+ # This is required. For some reason these do not get correctly identified for release builds.
+ ac_cv_func_wcslen=yes
+ ac_cv_func_memmove=yes
+ # The following are required for a full gettext built (libintl and tools).
+ gl_cv_func_printf_directive_n=no # segfaults otherwise with popup window
+ ac_cv_func_memset=yes # not detected in release builds
+ )
+ if(NOT VCPKG_TARGET_IS_MINGW)
+ list(APPEND OPTIONS
+ # Don't take from port dirent
+ ac_cv_header_dirent_h=no
+ # Don't take from port getopt-win32
+ ac_cv_header_getopt_h=no
+ # Don't take from port pthreads
+ ac_cv_header_pthread_h=no
+ ac_cv_header_sched_h=no
+ ac_cv_header_semaphore_h=no
+ # Detected 'no' everywhere except x64-windows-static
+ ac_cv_func_snprintf=no
+ # Detected x64 values for gnulib, overriding guesses for cross builds
+ gl_cv_func_fopen_mode_x=yes
+ gl_cv_func_frexpl_works=yes
+ gl_cv_func_getcwd_null=yes
+ gl_cv_func_mbrtowc_empty_input=no
+ gl_cv_func_mbsrtowcs_works=yes
+ gl_cv_func_printf_flag_zero=yes
+ gl_cv_func_printf_infinite_long_double=yes
+ gl_cv_func_printf_precision=yes
+ gl_cv_func_snprintf_truncation_c99=yes
+ # Detected x64 values for gettext, overriding guesses for x86 & x64-uwp
+ gt_cv_int_divbyzero_sigfpe=no
+ )
+ endif()
+ endif()
+
+ file(REMOVE "${CURRENT_BUILDTREES_DIR}/config.cache-${TARGET_TRIPLET}-rel.log")
+ vcpkg_configure_make(SOURCE_PATH "${SOURCE_PATH}"
+ DETERMINE_BUILD_TRIPLET
+ USE_WRAPPERS
+ ADDITIONAL_MSYS_PACKAGES gzip
+ OPTIONS
+ ${OPTIONS}
+ OPTIONS_RELEASE
+ "--cache-file=${CURRENT_BUILDTREES_DIR}/config.cache-${TARGET_TRIPLET}-rel.log"
+ )
+
+ # This helps with Windows build times, but should work everywhere in vcpkg.
+ # - Avoid an extra command to move a temporary file, we are building out of source.
+ # - Avoid a subshell just to add comments, the build dir is temporary.
+ # - Avoid cygpath -w when other tools handle this for us.
+ file(GLOB_RECURSE makefiles "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}*/*Makefile")
+ foreach(file IN LISTS makefiles)
+ file(READ "${file}" rules)
+ string(REGEX REPLACE "(\n\ttest -d [^ ]* [|][|] [\$][(]MKDIR_P[)][^\n;]*)(\n\t)" "\\1 || exit 1 ; \\\\\\2" rules "${rules}")
+ string(REGEX REPLACE "(\n\t){ echo '/[*] [^*]* [*]/'; \\\\\n\t cat ([^;\n]*); \\\\\n\t[}] > [\$]@-t\n\tmv -f [\$]@-t ([\$]@\n)" "\\1cp \\2 \\3" rules "${rules}")
+ string(REGEX REPLACE " > [\$]@-t\n\t[\$][(]AM_V_at[)]mv [\$]@-t ([\$]@\n)" "> \\1" rules "${rules}")
+ string(REGEX REPLACE "([\$}[(]COMPILE[)] -c -o [\$]@) `[\$][(]CYGPATH_W[)] '[\$]<'`" "\\1 \$<" rules "${rules}")
+ file(WRITE "${file}" "${rules}")
+ endforeach()
+
+ vcpkg_install_make()
+ vcpkg_copy_pdbs()
+ vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin")
+ file(GLOB unix_runtime LIST_DIRECTORIES false
+ "${CURRENT_PACKAGES_DIR}/lib/libgettext*${VCPKG_TARGET_SHARED_LIBRARY_SUFFIX}*"
+ "${CURRENT_PACKAGES_DIR}/lib/libtextstyle*${VCPKG_TARGET_SHARED_LIBRARY_SUFFIX}*"
+ )
+ if(unix_runtime)
+ file(INSTALL ${unix_runtime} DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin")
+ endif()
+ file(GLOB link_libs LIST_DIRECTORIES false "${CURRENT_PACKAGES_DIR}/lib/*" "${CURRENT_PACKAGES_DIR}/bin/*.dll")
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include" ${link_libs})
+endif()
+
+if("tools" IN_LIST FEATURES)
+ vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/lib/gettext/user-email" "${CURRENT_INSTALLED_DIR}" "`dirname $0`/../.." IGNORE_UNCHANGED)
+else()
+ # A fast installation of the autopoint tool and data, needed for autoconfig
+ include("${CMAKE_CURRENT_LIST_DIR}/install-autopoint.cmake")
+ install_autopoint()
+endif()
+
+# These files can be needed to run `autoreconf`.
+# We want to install these files also for fast "core" builds without "tools".
+# Cf. PACKAGING for the file list.
+file(INSTALL
+ "${SOURCE_PATH}/gettext-runtime/m4/build-to-host.m4"
+ "${SOURCE_PATH}/gettext-runtime/m4/gettext.m4"
+ "${SOURCE_PATH}/gettext-runtime/m4/iconv.m4"
+ "${SOURCE_PATH}/gettext-runtime/m4/intlmacosx.m4"
+ "${SOURCE_PATH}/gettext-runtime/m4/nls.m4"
+ "${SOURCE_PATH}/gettext-runtime/m4/po.m4"
+ "${SOURCE_PATH}/gettext-runtime/m4/progtest.m4"
+ "${SOURCE_PATH}/gettext-runtime/gnulib-m4/host-cpu-c-abi.m4"
+ "${SOURCE_PATH}/gettext-runtime/gnulib-m4/lib-ld.m4"
+ "${SOURCE_PATH}/gettext-runtime/gnulib-m4/lib-link.m4"
+ "${SOURCE_PATH}/gettext-runtime/gnulib-m4/lib-prefix.m4"
+ DESTINATION "${CURRENT_PACKAGES_DIR}/share/gettext/aclocal"
+)
+
+if(NOT VCPKG_CROSSCOMPILING)
+ file(COPY "${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/gettext")
+endif()
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/gettext-runtime/COPYING" "${SOURCE_PATH}/COPYING")