Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Aug 2018 14:22:46 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478043 - in head/vietnamese/x-unikey: . files
Message-ID:  <201808251422.w7PEMlwo041330@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sat Aug 25 14:22:46 2018
New Revision: 478043
URL: https://svnweb.freebsd.org/changeset/ports/478043

Log:
  vietnamese/x-unikey: Fix build with Clang 6
  
  data.cpp:100:15: error: constant expression evaluates to -72 which cannot be narrowed to type 'unsigned char' [-Wc++11-narrowing]
  {{'A','a','<B8>','<B8>','<B5>','<B5>','<B6>','<B6>','<B7>','<B7>','<B9>','<B9>',      // 0: a
                   ^~~~~~
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/vi-x-unikey-1.0.4.log
  
  - While here prevent build from asking an interactive question
    during the install phase

Added:
  head/vietnamese/x-unikey/files/patch-src_xim_install.sh   (contents, props changed)
Modified:
  head/vietnamese/x-unikey/Makefile

Modified: head/vietnamese/x-unikey/Makefile
==============================================================================
--- head/vietnamese/x-unikey/Makefile	Sat Aug 25 14:20:50 2018	(r478042)
+++ head/vietnamese/x-unikey/Makefile	Sat Aug 25 14:22:46 2018	(r478043)
@@ -9,9 +9,12 @@ MASTER_SITES=	SF/unikey/${PORTNAME}/${PORTVERSION}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Vietnamese input method for X
 
-USES=		tar:bzip2
+USES=		compiler tar:bzip2
 USE_XORG=	x11
 GNU_CONFIGURE=	yes
+
+CXXFLAGS+=	${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
+CXXFLAGS_clang=	-Wno-c++11-narrowing
 
 PLIST_FILES=	bin/unikey bin/ukxim
 

Added: head/vietnamese/x-unikey/files/patch-src_xim_install.sh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/vietnamese/x-unikey/files/patch-src_xim_install.sh	Sat Aug 25 14:22:46 2018	(r478043)
@@ -0,0 +1,10 @@
+Do not ask an interactive question during the install phase.
+
+--- src/xim/install.sh.orig	2018-08-25 14:18:57 UTC
++++ src/xim/install.sh
+@@ -1,4 +1,5 @@
+ #!/bin/sh
++exit 0
+ echo 
+ echo "To use UniKey, certain environment variables must be set."
+ echo "Do you want to set these variables in /etc/profile? (y/N)"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808251422.w7PEMlwo041330>