Received: by mail.netbsd.org (Postfix, from userid 605) id 0C42184E41; Sun, 8 Mar 2020 08:59:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8778F84E3E for ; Sun, 8 Mar 2020 08:59:16 +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 P3u2wtJgFCcF for ; Sun, 8 Mar 2020 08:59:09 +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 F24AF84D72 for ; Sun, 8 Mar 2020 08:59:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DED1CFB27; Sun, 8 Mar 2020 08:59:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1583657948139610" MIME-Version: 1.0 Date: Sun, 8 Mar 2020 08:59:08 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/inputmethod/uim To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20200308085908.DED1CFB27@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. --_----------=_1583657948139610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Sun Mar 8 08:59:08 UTC 2020 Modified Files: pkgsrc/inputmethod/uim: Makefile options.mk Log Message: Fix qt5 option for inputmethod/uim Fix qt5 option for inputmethod/uim as pointed out by HITOSHI Osada in pkg/55021 . To generate a diff of this commit: cvs rdiff -u -r1.159 -r1.160 pkgsrc/inputmethod/uim/Makefile cvs rdiff -u -r1.36 -r1.37 pkgsrc/inputmethod/uim/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1583657948139610 Content-Disposition: inline Content-Length: 1260 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/inputmethod/uim/Makefile diff -u pkgsrc/inputmethod/uim/Makefile:1.159 pkgsrc/inputmethod/uim/Makefile:1.160 --- pkgsrc/inputmethod/uim/Makefile:1.159 Thu Mar 5 13:04:45 2020 +++ pkgsrc/inputmethod/uim/Makefile Sun Mar 8 08:59:08 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.159 2020/03/05 13:04:45 nia Exp $ +# $NetBSD: Makefile,v 1.160 2020/03/08 08:59:08 nros Exp $ -PKGREVISION= 1 +PKGREVISION= 2 .include "../../inputmethod/uim/Makefile.common" COMMENT= Multilingual input method library Index: pkgsrc/inputmethod/uim/options.mk diff -u pkgsrc/inputmethod/uim/options.mk:1.36 pkgsrc/inputmethod/uim/options.mk:1.37 --- pkgsrc/inputmethod/uim/options.mk:1.36 Fri Nov 1 16:21:11 2019 +++ pkgsrc/inputmethod/uim/options.mk Sun Mar 8 08:59:08 2020 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.36 2019/11/01 16:21:11 nia Exp $ +# $NetBSD: options.mk,v 1.37 2020/03/08 08:59:08 nros Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.uim PKG_SUPPORTED_OPTIONS= gtk2 gtk3 qt5 xim @@ -39,7 +39,7 @@ PLIST_SRC+= PLIST.qt5 .include "../../x11/qt5-qtx11extras/buildlink3.mk" CONFIGURE_ARGS+= --with-qt5-immodule .else -CONFIGURE_ARGS+= --without-gtk3 +CONFIGURE_ARGS+= --without-qt5-immodule .endif .if !empty(PKG_OPTIONS:Mxim) --_----------=_1583657948139610--