Received: by mail.netbsd.org (Postfix, from userid 605) id 94F0884D6F; Sat, 10 Feb 2024 12:41:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707568897; bh=c5q08DNGkmGJVN6hWd9lq+R7LY36NU4SoijZyYV6uKc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=gvYZOzrM1OY3C4Cr4qBIC/VyYkDYrVLw1wV2ybgIKKlaSFYO7KfmvtxOX8D8Zgshs IOEqebv6MClLMXH5cJKhTYi2FjdQrmpmhxpqNZvodGGmnqQl4jsSINvtANRn5jTt8F wEy+qaoN/WZwbL2jEmMKTX8xM24M4K7eLOEzjKbQ= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 85AB784D6C for ; Sat, 10 Feb 2024 12:41:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 rMXghy1PbcU4 for ; Sat, 10 Feb 2024 12:41:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CDFD184D00 for ; Sat, 10 Feb 2024 12:41:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707568896; bh=c5q08DNGkmGJVN6hWd9lq+R7LY36NU4SoijZyYV6uKc=; h=Date:From:Subject:To:Reply-To; b=CLj3uCIpfq2lHmK7yks45SjaFisxsRA4Jfa8q+Le2SgLQxoNC40W6DYjMImD1zNZX OJ4fJ+hxXqlPHJlYlcaR2stXLneD0zxsRDwJH/iYkOyrdMts54GXLW5wTtCP4lULEF VYtBdJZAHTAn2DR7VCueHX9LvQzGFPNWgcLnseZY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id C56FBFA42; Sat, 10 Feb 2024 12:41:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707568895250180" MIME-Version: 1.0 Date: Sat, 10 Feb 2024 12:41:35 +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: <20240210124135.C56FBFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707568895250180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Feb 10 12:41:35 UTC 2024 Modified Files: pkgsrc/x11/mlterm: options.mk Log Message: x11/mlterm: Add option for Fcitx5 To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/x11/mlterm/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707568895250180 Content-Disposition: inline Content-Length: 1420 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/mlterm/options.mk diff -u pkgsrc/x11/mlterm/options.mk:1.23 pkgsrc/x11/mlterm/options.mk:1.24 --- pkgsrc/x11/mlterm/options.mk:1.23 Tue Jul 26 02:25:15 2022 +++ pkgsrc/x11/mlterm/options.mk Sat Feb 10 12:41:35 2024 @@ -1,11 +1,13 @@ -# $NetBSD: options.mk,v 1.23 2022/07/26 02:25:15 rin Exp $ +# $NetBSD: options.mk,v 1.24 2024/02/10 12:41:35 ryoon Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mlterm -PKG_SUPPORTED_OPTIONS= cairo canna fcitx fribidi gdk_pixbuf2 gtk ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2 debug +PKG_SUPPORTED_OPTIONS= cairo canna fribidi gdk_pixbuf2 gtk ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2 debug PKG_SUGGESTED_OPTIONS= cairo fribidi gdk_pixbuf2 gtk m17nlib otl xft2 .if ${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" PKG_SUGGESTED_OPTIONS+= mlterm-fb .endif +PKG_OPTIONS_OPTIONAL_GROUPS= fcitx +PKG_OPTIONS_GROUP.fcitx= fcitx fcitx5 .include "../../mk/bsd.options.mk" @@ -75,6 +77,15 @@ PLIST.fcitx= yes CONFIGURE_ARGS+= --disable-fcitx .endif +.if !empty(PKG_OPTIONS:Mfcitx5) +.include "../../inputmethod/fcitx5/buildlink3.mk" +.include "../../inputmethod/fcitx5-gtk/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 --_----------=_1707568895250180--