mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
- Add RUN_DEPENDS on japanese/skk-jisyo - Fix default SKK-JISYO.L dictionary file path setting for SKK input method - Rename textproc/uim-gtk port to textproc/uim-gtk2 - Add textproc/uim-qt6 port of Qt6 input method module - Bump PORTREVISION of the ports that depend on textproc/uim port
15 lines
570 B
Bash
15 lines
570 B
Bash
--- autogen.sh.orig 2025-02-23 08:00:09 UTC
|
|
+++ autogen.sh
|
|
@@ -3,9 +3,6 @@ ${AUTORECONF:-autoreconf} --force --install "$@"
|
|
set -e
|
|
|
|
${AUTORECONF:-autoreconf} --force --install "$@"
|
|
-# WORKAROUND: intltool-merge creates .intltool-merge-cache.lock but
|
|
-# it's not listed in mostlyclean in po/Makefile.in.in. It causes a
|
|
-# "make distcheck" failure.
|
|
-sed -i.bak -e 's/ \.intltool-merge-cache$/ .intltool-merge-cache{,.lock}/g' \
|
|
- po/Makefile.in.in
|
|
-rm -f po/Makefile.in.in.bak
|
|
+if command -v intltoolize >/dev/null; then
|
|
+ intltoolize --copy --force --automake
|
|
+fi
|