Received: by mail.netbsd.org (Postfix, from userid 605) id 5832384E24; Mon, 28 Oct 2019 09:46:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D14DA84E23 for ; Mon, 28 Oct 2019 09:46:19 +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 mPtri21TANAc for ; Mon, 28 Oct 2019 09:46:19 +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 2882C84E09 for ; Mon, 28 Oct 2019 09:46:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1802DFA8D; Mon, 28 Oct 2019 09:46:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572255979115950" MIME-Version: 1.0 Date: Mon, 28 Oct 2019 09:46:19 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/inputmethod/fcitx To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20191028094619.1802DFA8D@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. --_----------=_1572255979115950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Mon Oct 28 09:46:19 UTC 2019 Modified Files: pkgsrc/inputmethod/fcitx: Makefile Removed Files: pkgsrc/inputmethod/fcitx: options.mk Log Message: fcitx: Remove the qt (qt4) build option (it was disabled by default) To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/inputmethod/fcitx/Makefile cvs rdiff -u -r1.1 -r0 pkgsrc/inputmethod/fcitx/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572255979115950 Content-Disposition: inline Content-Length: 1096 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/inputmethod/fcitx/Makefile diff -u pkgsrc/inputmethod/fcitx/Makefile:1.20 pkgsrc/inputmethod/fcitx/Makefile:1.21 --- pkgsrc/inputmethod/fcitx/Makefile:1.20 Sun Jul 21 22:25:08 2019 +++ pkgsrc/inputmethod/fcitx/Makefile Mon Oct 28 09:46:18 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.20 2019/07/21 22:25:08 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2019/10/28 09:46:18 kamil Exp $ # DISTNAME= fcitx-4.2.9.6 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= inputmethod MASTER_SITES= https://download.fcitx-im.org/fcitx/ EXTRACT_SUFX= .tar.xz @@ -17,8 +17,6 @@ DATAFILES+= table.tar.gz EXTRACT_ONLY= ${DEFAULT_DISTFILES} -.include "options.mk" - .for f in ${DATAFILES} SITES.${f}= https://download.fcitx-im.org/data/ DISTFILES+= ${f} @@ -42,6 +40,9 @@ CMAKE_ARGS+= -DENABLE_PRESAGE=OFF CMAKE_ARGS+= -DENABLE_GIR=OFF CMAKE_ARGS+= -DENABLE_GTK2_IM_MODULE=ON CMAKE_ARGS+= -DENABLE_GTK3_IM_MODULE=ON +CMAKE_ARGS+= -DENABLE_QT=OFF +CMAKE_ARGS+= -DENABLE_QT_IM_MODULE=OFF +CMAKE_ARGS+= -DENABLE_QT_GUI=OFF BUILDLINK_DEPMETHOD.libXt?= build --_----------=_1572255979115950--