summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--textproc/google-translate-cli/Makefile9
-rw-r--r--textproc/google-translate-cli/files/patch-include_Utils.awk11
2 files changed, 18 insertions, 2 deletions
diff --git a/textproc/google-translate-cli/Makefile b/textproc/google-translate-cli/Makefile
index 9863a45ddf4d..209fc1b09b28 100644
--- a/textproc/google-translate-cli/Makefile
+++ b/textproc/google-translate-cli/Makefile
@@ -4,6 +4,7 @@
PORTNAME= google-translate-cli
DISTVERSIONPREFIX= v
DISTVERSION= 0.9.6.12
+PORTREVISION= 1
CATEGORIES= textproc
MAINTAINER= nivit@FreeBSD.org
@@ -14,14 +15,18 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= gawk:lang/gawk
RUN_DEPENDS= bash:shells/bash \
- gawk:lang/gawk
-TEST_DEPENDS= gawk:lang/gawk
+ gawk:lang/gawk \
+ gbase64:sysutils/coreutils
+TEST_DEPENDS= curl:ftp/curl \
+ emacs:editors/emacs@nox \
+ rlwrap:devel/rlwrap
USE_GITHUB= yes
GH_ACCOUNT= soimort
GH_PROJECT= translate-shell
ALL_TARGET= build
+TEST_ENV= LC_ALL=C.UTF-8
TEST_TARGET= test
NO_ARCH= yes
PLIST_FILES= bin/trans \
diff --git a/textproc/google-translate-cli/files/patch-include_Utils.awk b/textproc/google-translate-cli/files/patch-include_Utils.awk
new file mode 100644
index 000000000000..140dbe013f33
--- /dev/null
+++ b/textproc/google-translate-cli/files/patch-include_Utils.awk
@@ -0,0 +1,11 @@
+--- include/Utils.awk.orig 2020-10-15 13:53:06 UTC
++++ include/Utils.awk
+@@ -233,6 +233,8 @@ function dumpX(text, group, command, temp) {
+ function base64(text, command, temp) {
+ if (detectProgram("uname", "-s", 1) == "Linux") # GNU base64 wraps lines by default
+ command = "echo -n " parameterize(text) PIPE "base64 -w0"
++ if (detectProgram("gbase64", "--version")) # GNU base64 is sometimes available as gbase64
++ command = "echo -n " parameterize(text) PIPE "gbase64 -w0"
+ else
+ command = "echo -n " parameterize(text) PIPE "base64"
+ command = "bash -c " parameterize(command, "\"")