Received: by mail.netbsd.org (Postfix, from userid 605) id 35A3B85022; Wed, 31 Jan 2024 15:17:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 56A4A8501C for ; Wed, 31 Jan 2024 15:17:52 +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 LEVXsQK4yPXW for ; Wed, 31 Jan 2024 15:17:51 +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 C7C3E84D2F for ; Wed, 31 Jan 2024 15:17:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B8641FA42; Wed, 31 Jan 2024 15:17:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706714271150040" MIME-Version: 1.0 Date: Wed, 31 Jan 2024 15:17:51 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/inputmethod/multiskkserv To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20240131151751.B8641FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706714271150040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Wed Jan 31 15:17:51 UTC 2024 Modified Files: pkgsrc/inputmethod/multiskkserv: Makefile pkgsrc/inputmethod/multiskkserv/files: multiskkserv.sh Log Message: multiskkserv: Use SKK-JISYO.JIS3_4 of inputmethod/skk-jisyo-cdb To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/inputmethod/multiskkserv/Makefile cvs rdiff -u -r1.2 -r1.3 \ pkgsrc/inputmethod/multiskkserv/files/multiskkserv.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706714271150040 Content-Disposition: inline Content-Length: 1820 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/inputmethod/multiskkserv/Makefile diff -u pkgsrc/inputmethod/multiskkserv/Makefile:1.6 pkgsrc/inputmethod/multiskkserv/Makefile:1.7 --- pkgsrc/inputmethod/multiskkserv/Makefile:1.6 Sun Jul 30 22:32:19 2017 +++ pkgsrc/inputmethod/multiskkserv/Makefile Wed Jan 31 15:17:51 2024 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.6 2017/07/30 22:32:19 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2024/01/31 15:17:51 ryoon Exp $ # DISTNAME= multiskkserv-20100128-ac PKGNAME= ${DISTNAME:S/-ac//} +PKGREVISION= 1 CATEGORIES= inputmethod japanese MASTER_SITES= ${MASTER_SITE_LOCAL} EXTRACT_SUFX= .tar.bz2 @@ -12,7 +13,7 @@ HOMEPAGE= https://github.com/sina-ht/mul COMMENT= Simple skk multi-dictionary server LICENSE= gnu-gpl-v2 -DEPENDS= skk-jisyo-cdb-[0-9]*:../../inputmethod/skk-jisyo-cdb +DEPENDS= skk-jisyo-cdb>=20240117:../../inputmethod/skk-jisyo-cdb DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} INSTALLATION_DIRS= ${DOCSDIR} Index: pkgsrc/inputmethod/multiskkserv/files/multiskkserv.sh diff -u pkgsrc/inputmethod/multiskkserv/files/multiskkserv.sh:1.2 pkgsrc/inputmethod/multiskkserv/files/multiskkserv.sh:1.3 --- pkgsrc/inputmethod/multiskkserv/files/multiskkserv.sh:1.2 Wed Nov 25 12:50:58 2015 +++ pkgsrc/inputmethod/multiskkserv/files/multiskkserv.sh Wed Jan 31 15:17:51 2024 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: multiskkserv.sh,v 1.2 2015/11/25 12:50:58 jperkin Exp $ +# $NetBSD: multiskkserv.sh,v 1.3 2024/01/31 15:17:51 ryoon Exp $ # # PROVIDE: multiskkserv # REQUIRE: DAEMON @@ -11,7 +11,7 @@ name="multiskkserv" rcvar=$name command="@PREFIX@/sbin/${name}" -multiskkserv_flags="@PREFIX@/share/skk/SKK-JISYO.L.cdb &" +multiskkserv_flags="@PREFIX@/share/skk/SKK-JISYO.L.cdb @PREFIX@/share/skk/SKK-JISYO.JIS3_4.cdb &" load_rc_config $name run_rc_command "$1" --_----------=_1706714271150040--