Received: by mail.netbsd.org (Postfix, from userid 605) id 3E90784D3A; Sat, 18 Aug 2018 01:32:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 56D5C84CD7 for ; Sat, 18 Aug 2018 01:32:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id mZl6xNoOzhHU for ; Sat, 18 Aug 2018 01:32:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9051684C78 for ; Sat, 18 Aug 2018 01:32:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8A3D3FBEC; Sat, 18 Aug 2018 01:32:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534555943244150" MIME-Version: 1.0 Date: Sat, 18 Aug 2018 01:32:23 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/x11/mlterm To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20180818013223.8A3D3FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1534555943244150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Aug 18 01:32:23 UTC 2018 Modified Files: pkgsrc/x11/mlterm: PLIST options.mk Log Message: Add fcitx option To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/x11/mlterm/PLIST cvs rdiff -u -r1.14 -r1.15 pkgsrc/x11/mlterm/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534555943244150 Content-Disposition: inline Content-Length: 2387 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/mlterm/PLIST diff -u pkgsrc/x11/mlterm/PLIST:1.39 pkgsrc/x11/mlterm/PLIST:1.40 --- pkgsrc/x11/mlterm/PLIST:1.39 Sat Feb 4 16:20:12 2017 +++ pkgsrc/x11/mlterm/PLIST Sat Aug 18 01:32:23 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.39 2017/02/04 16:20:12 tsutsui Exp $ +@comment $NetBSD: PLIST,v 1.40 2018/08/18 01:32:23 ryoon Exp $ bin/mlcc bin/mlclient bin/mlclientx @@ -17,6 +17,8 @@ ${PLIST.bidi}lib/mlterm/libctl_bidi.la ${PLIST.ind}lib/mlterm/libctl_iscii.la ${PLIST.canna}lib/mlterm/libim-canna.la ${PLIST.fb}${PLIST.canna}lib/mlterm/libim-canna-fb.la +${PLIST.fb}${PLIST.fcitx}lib/mlterm/libim-fcitx-fb.la +${PLIST.fcitx}lib/mlterm/libim-fcitx.la ${PLIST.ibus}lib/mlterm/libim-ibus.la ${PLIST.fb}${PLIST.ibus}lib/mlterm/libim-ibus-fb.la lib/mlterm/libim-kbd.la Index: pkgsrc/x11/mlterm/options.mk diff -u pkgsrc/x11/mlterm/options.mk:1.14 pkgsrc/x11/mlterm/options.mk:1.15 --- pkgsrc/x11/mlterm/options.mk:1.14 Sat May 6 13:48:39 2017 +++ pkgsrc/x11/mlterm/options.mk Sat Aug 18 01:32:23 2018 @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.14 2017/05/06 13:48:39 tsutsui Exp $ +# $NetBSD: options.mk,v 1.15 2018/08/18 01:32:23 ryoon Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mlterm -PKG_SUPPORTED_OPTIONS= cairo canna fribidi gdk_pixbuf2 ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2 +PKG_SUPPORTED_OPTIONS= cairo canna fcitx fribidi gdk_pixbuf2 ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2 PKG_SUGGESTED_OPTIONS= cairo fribidi gdk_pixbuf2 m17nlib otl xft2 .if ${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" PKG_SUGGESTED_OPTIONS+= mlterm-fb @@ -9,7 +9,7 @@ PKG_SUGGESTED_OPTIONS+= mlterm-fb .include "../../mk/bsd.options.mk" -PLIST_VARS+= bidi cairo canna fb ibus ind m17nlib otl scim skk uim wnn xft2 +PLIST_VARS+= bidi cairo canna fb fcitx ibus ind m17nlib otl scim skk uim wnn xft2 .if !empty(PKG_OPTIONS:Mmlterm-fb) CONFIGURE_ARGS+= --with-gui=xlib,fb @@ -45,6 +45,14 @@ CONFIGURE_ARGS+= --with-imagelib=gdk-pix .include "../../graphics/gdk-pixbuf2/buildlink3.mk" .endif +.if !empty(PKG_OPTIONS:Mfcitx) +.include "../../inputmethod/fcitx/buildlink3.mk" +CONFIGURE_ARGS+= --enable-fcitx +PLIST.fcitx= yes +.else +CONFIGURE_ARGS+= --disable-fcitx +.endif + .if !empty(PKG_OPTIONS:Mibus) .include "../../inputmethod/ibus/buildlink3.mk" CONFIGURE_ARGS+= --enable-ibus --_----------=_1534555943244150--