From owner-svn-ports-head@freebsd.org Sat Sep 14 15:49:12 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C0206F8302; Sat, 14 Sep 2019 15:49:12 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46Vxkw4Yscz47Xl; Sat, 14 Sep 2019 15:49:12 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7C97A21EFC; Sat, 14 Sep 2019 15:49:12 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8EFnCZ0018701; Sat, 14 Sep 2019 15:49:12 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8EFnBoK018695; Sat, 14 Sep 2019 15:49:11 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201909141549.x8EFnBoK018695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Sat, 14 Sep 2019 15:49:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512029 - in head/japanese/kasumi: . files X-SVN-Group: ports-head X-SVN-Commit-Author: nobutaka X-SVN-Commit-Paths: in head/japanese/kasumi: . files X-SVN-Commit-Revision: 512029 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Sep 2019 15:49:12 -0000 Author: nobutaka Date: Sat Sep 14 15:49:11 2019 New Revision: 512029 URL: https://svnweb.freebsd.org/changeset/ports/512029 Log: - Sync with update of japanese/anthy. - Bump PORTREVISION. Added: head/japanese/kasumi/files/patch-KasumiDic.cxx (contents, props changed) Modified: head/japanese/kasumi/Makefile head/japanese/kasumi/files/patch-KasumiException.hxx head/japanese/kasumi/files/patch-configure Modified: head/japanese/kasumi/Makefile ============================================================================== --- head/japanese/kasumi/Makefile Sat Sep 14 15:44:43 2019 (r512028) +++ head/japanese/kasumi/Makefile Sat Sep 14 15:49:11 2019 (r512029) @@ -3,17 +3,22 @@ PORTNAME= kasumi PORTVERSION= 2.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= japanese MASTER_SITES= OSDN/${PORTNAME}/41436 MAINTAINER= nobutaka@FreeBSD.org COMMENT= Dictionary management tool for anthy -LIB_DEPENDS= libanthy.so:japanese/anthy +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING -USES= compiler:c++11-lang gmake localbase:ldflags pkgconfig -USE_GNOME= gtk20 +LIB_DEPENDS= libanthy.so:japanese/anthy \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 + +USES= compiler:c++11-lang gmake gnome iconv:wchar_t localbase:ldflags pkgconfig +USE_GNOME= gtk20 cairo gdkpixbuf2 GNU_CONFIGURE= yes Added: head/japanese/kasumi/files/patch-KasumiDic.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/kasumi/files/patch-KasumiDic.cxx Sat Sep 14 15:49:11 2019 (r512029) @@ -0,0 +1,10 @@ +--- KasumiDic.cxx.orig 2007-10-30 15:09:23 UTC ++++ KasumiDic.cxx +@@ -75,7 +75,6 @@ void KasumiDic::load(KasumiConfiguration *conf) + const int FREQ_UBOUND = conf->getPropertyValueByInt("MaxFrequency"); + + int anthy_version = atoi(anthy_get_version_string()); +- assert(anthy_version != 0); + + try{ + if(anthy_priv_dic_select_first_entry() == -1){ Modified: head/japanese/kasumi/files/patch-KasumiException.hxx ============================================================================== --- head/japanese/kasumi/files/patch-KasumiException.hxx Sat Sep 14 15:44:43 2019 (r512028) +++ head/japanese/kasumi/files/patch-KasumiException.hxx Sat Sep 14 15:49:11 2019 (r512029) @@ -1,6 +1,6 @@ ---- KasumiException.hxx.orig Fri Jan 7 23:18:09 2005 -+++ KasumiException.hxx Sun May 22 19:58:45 2005 -@@ -5,6 +5,8 @@ +--- KasumiException.hxx.orig 2006-05-26 17:41:25 UTC ++++ KasumiException.hxx +@@ -30,6 +30,8 @@ #include "config.h" #endif @@ -8,4 +8,4 @@ + using namespace std; - class KasumiDicExaminationException{ + enum _output {STDOUT, STDERR, ERR_DIALOG, WARNING_DIALOG}; Modified: head/japanese/kasumi/files/patch-configure ============================================================================== --- head/japanese/kasumi/files/patch-configure Sat Sep 14 15:44:43 2019 (r512028) +++ head/japanese/kasumi/files/patch-configure Sat Sep 14 15:49:11 2019 (r512029) @@ -1,6 +1,6 @@ ---- configure.orig 2014-06-16 23:25:01.000000000 +0900 -+++ configure 2014-06-16 23:25:34.000000000 +0900 -@@ -7365,7 +7365,7 @@ +--- configure.orig 2009-07-17 00:52:02 UTC ++++ configure +@@ -7365,7 +7365,7 @@ fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do @@ -9,7 +9,7 @@ done fi -@@ -8587,7 +8587,7 @@ +@@ -8587,7 +8587,7 @@ fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do