From owner-svn-ports-head@FreeBSD.ORG Mon Oct 15 19:14:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 453DBED5; Mon, 15 Oct 2012 19:14:00 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2C3118FC0A; Mon, 15 Oct 2012 19:14:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9FJE07a054282; Mon, 15 Oct 2012 19:14:00 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9FJDx8s054271; Mon, 15 Oct 2012 19:13:59 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210151913.q9FJDx8s054271@svn.freebsd.org> From: Xin LI Date: Mon, 15 Oct 2012 19:13:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305931 - in head/chinese: fcitx fcitx-configtool fcitx-googlepinyin fcitx-libpinyin X-SVN-Group: ports-head 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.14 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: Mon, 15 Oct 2012 19:14:00 -0000 Author: delphij Date: Mon Oct 15 19:13:59 2012 New Revision: 305931 URL: http://svn.freebsd.org/changeset/ports/305931 Log: Update fcitx to newer versions: fcitx 4.2.6 -> 4.2.6.1 fcitx-configtool 4.2.5 -> 4.2.5.1 fcitx-libpinyin 0.2.0 -> 0.2.1 fcitx-googlepinyin 0.1.5 -> 0.1.6 Submitted by: maintainer PR: ports/172727, ports/172093 Feature safe: yes Modified: head/chinese/fcitx-configtool/Makefile head/chinese/fcitx-configtool/distinfo head/chinese/fcitx-googlepinyin/Makefile head/chinese/fcitx-googlepinyin/distinfo head/chinese/fcitx-googlepinyin/pkg-plist head/chinese/fcitx-libpinyin/Makefile head/chinese/fcitx-libpinyin/distinfo head/chinese/fcitx/Makefile head/chinese/fcitx/distinfo head/chinese/fcitx/pkg-plist Modified: head/chinese/fcitx-configtool/Makefile ============================================================================== --- head/chinese/fcitx-configtool/Makefile Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-configtool/Makefile Mon Oct 15 19:13:59 2012 (r305931) @@ -1,12 +1,8 @@ -# New ports collection makefile for: fcitx-configtool -# Date created: 09 Nov 2011 -# Whom: Zhihao Yuan -# +# Created by: Zhihao Yuan # $FreeBSD$ -# PORTNAME= fcitx-configtool -PORTVERSION= 0.4.5 +PORTVERSION= 0.4.5.1 CATEGORIES= chinese x11 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DIST_SUBDIR= fcitx @@ -23,12 +19,12 @@ USE_GNOME= intltool gnomehack USE_GETTEXT= yes USE_CMAKE= yes -OPTIONS= GTK2 "Enable Gtk2 Version" on \ - GTK3 "Enable Gtk3 Version" off +OPTIONS_DEFINE= GTK2 GTK3 +OPTIONS_DEFAULT=GTK2 .include -.if defined(WITH_GTK2) +.if ${PORT_OPTIONS:MGTK2} CMAKE_ARGS+= -DENABLE_GTK2=ON USE_GNOME+= gtk20 PLIST_SUB+= GTK2="" @@ -36,7 +32,7 @@ PLIST_SUB+= GTK2="" PLIST_SUB+= GTK2="@comment " .endif -.if defined(WITH_GTK3) +.if ${PORT_OPTIONS:MGTK3} USE_GNOME+= gtk30 PLIST_SUB+= GTK3="" .else @@ -44,7 +40,7 @@ CMAKE_ARGS+= -DENABLE_GTK3=OFF PLIST_SUB+= GTK3="@comment " .endif -.if defined(WITHOUT_GTK2) && defined(WITHOUT_GTK3) +.if !${PORT_OPTIONS:MGTK2} && !${PORT_OPTIONS:MGTK3} IGNORE= a GUI is required .endif Modified: head/chinese/fcitx-configtool/distinfo ============================================================================== --- head/chinese/fcitx-configtool/distinfo Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-configtool/distinfo Mon Oct 15 19:13:59 2012 (r305931) @@ -1,2 +1,2 @@ -SHA256 (fcitx/fcitx-configtool-0.4.5.tar.xz) = 474ff8635e29e29b6b6f37efe698e2b4264efaba55448a13d0b46d696887c8c1 -SIZE (fcitx/fcitx-configtool-0.4.5.tar.xz) = 42036 +SHA256 (fcitx/fcitx-configtool-0.4.5.1.tar.xz) = bde3097a073dba733633c33d9b4834acdb46295fed7fc5d95dda3a2260f91e28 +SIZE (fcitx/fcitx-configtool-0.4.5.1.tar.xz) = 42468 Modified: head/chinese/fcitx-googlepinyin/Makefile ============================================================================== --- head/chinese/fcitx-googlepinyin/Makefile Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-googlepinyin/Makefile Mon Oct 15 19:13:59 2012 (r305931) @@ -1,13 +1,8 @@ -# New ports collection makefile for: fcitx-googlepinyin -# Date created: 11 Nov 2011 -# Whom: Zhihao Yuan -# +# Created by: Zhihao Yuan # $FreeBSD$ -# PORTNAME= fcitx-googlepinyin -PORTVERSION= 0.1.5 -PORTREVISION= 1 +PORTVERSION= 0.1.6 CATEGORIES= chinese MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DIST_SUBDIR= fcitx @@ -15,8 +10,8 @@ DIST_SUBDIR= fcitx MAINTAINER= lichray@gmail.com COMMENT= A libgooglepinyin support for Fcitx -LIB_DEPENDS= fcitx-config.4:${PORTSDIR}/chinese/fcitx \ - googlepinyin.0:${PORTSDIR}/chinese/libgooglepinyin +LIB_DEPENDS= fcitx-config:${PORTSDIR}/chinese/fcitx \ + googlepinyin:${PORTSDIR}/chinese/libgooglepinyin USE_XZ= yes USE_GETTEXT= yes Modified: head/chinese/fcitx-googlepinyin/distinfo ============================================================================== --- head/chinese/fcitx-googlepinyin/distinfo Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-googlepinyin/distinfo Mon Oct 15 19:13:59 2012 (r305931) @@ -1,2 +1,2 @@ -SHA256 (fcitx/fcitx-googlepinyin-0.1.5.tar.xz) = f74ac4b40d11002a0dfc49572475a9b9d9671755b9c77bbc7a091d6e0849ab8d -SIZE (fcitx/fcitx-googlepinyin-0.1.5.tar.xz) = 20776 +SHA256 (fcitx/fcitx-googlepinyin-0.1.6.tar.xz) = 29a5506ed45d26534f7bcbca1c56138984dcc7e99a42652c6a49fe20ec0da781 +SIZE (fcitx/fcitx-googlepinyin-0.1.6.tar.xz) = 24080 Modified: head/chinese/fcitx-googlepinyin/pkg-plist ============================================================================== --- head/chinese/fcitx-googlepinyin/pkg-plist Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-googlepinyin/pkg-plist Mon Oct 15 19:13:59 2012 (r305931) @@ -1,6 +1,10 @@ lib/fcitx/fcitx-googlepinyin.so share/fcitx/addon/fcitx-googlepinyin.conf -share/fcitx/configdesc/fcitx-googlepinyin.desc share/fcitx/inputmethod/googlepinyin.conf +share/fcitx/imicon/googlepinyin.png +share/fcitx/skin/default/googlepinyin.png +share/fcitx/skin/classic/googlepinyin.png +share/icons/hicolor/16x16/apps/fcitx-googlepinyin.png +share/icons/hicolor/48x48/apps/fcitx-googlepinyin.png share/locale/zh_CN/LC_MESSAGES/fcitx-googlepinyin.mo share/locale/zh_TW/LC_MESSAGES/fcitx-googlepinyin.mo Modified: head/chinese/fcitx-libpinyin/Makefile ============================================================================== --- head/chinese/fcitx-libpinyin/Makefile Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-libpinyin/Makefile Mon Oct 15 19:13:59 2012 (r305931) @@ -1,24 +1,20 @@ -# New ports collection makefile for: fcitx-libpinyin -# Date created: 7 Apr 2012 -# Whom: Zhihao Yuan -# +# Created by: Zhihao Yuan # $FreeBSD$ -# PORTNAME= fcitx-libpinyin -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= chinese MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ http://cloud.github.com/downloads/fcitx/fcitx-libpinyin/:libpinyin -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} model.text.tar.gz:libpinyin +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} model.text.${MDVER}.tar.gz:libpinyin DIST_SUBDIR= fcitx EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= lichray@gmail.com COMMENT= The libpinyin support for Fcitx -LIB_DEPENDS= fcitx-config.4:${PORTSDIR}/chinese/fcitx \ - pinyin.2:${PORTSDIR}/chinese/libpinyin +LIB_DEPENDS= fcitx-config:${PORTSDIR}/chinese/fcitx \ + pinyin:${PORTSDIR}/chinese/libpinyin USE_LDCONFIG= ${PREFIX}/lib/fcitx/ USE_XZ= yes @@ -28,8 +24,9 @@ USE_GNOME= intltool INSTALLS_ICONS= yes post-patch: - @${LN} -s ${_DISTDIR}/model.text.tar.gz ${WRKSRC}/data + @${LN} -s ${_DISTDIR}/model.text.${MDVER}.tar.gz ${WRKSRC}/data PROJECTHOST= fcitx +MDVER= 20120921 .include Modified: head/chinese/fcitx-libpinyin/distinfo ============================================================================== --- head/chinese/fcitx-libpinyin/distinfo Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx-libpinyin/distinfo Mon Oct 15 19:13:59 2012 (r305931) @@ -1,4 +1,4 @@ -SHA256 (fcitx/fcitx-libpinyin-0.2.0.tar.xz) = b39649d4e4ebb4b054ea520fe80efd520b273d42223d6d8c0b699b11fa4cd039 -SIZE (fcitx/fcitx-libpinyin-0.2.0.tar.xz) = 24464 -SHA256 (fcitx/model.text.tar.gz) = 8d87d9c0b622f3163976a8c8bc57ded878cf0dee63c855b8a7afd36a151114eb -SIZE (fcitx/model.text.tar.gz) = 9991219 +SHA256 (fcitx/fcitx-libpinyin-0.2.1.tar.xz) = 6a5c9f7c7009a893b4beba85d6ee361253ca1211ce954da0e752c01a528c8c09 +SIZE (fcitx/fcitx-libpinyin-0.2.1.tar.xz) = 24468 +SHA256 (fcitx/model.text.20120921.tar.gz) = 84f086a8eb56a4a8ddab7d95ce1b386dfe292561a3271132e3aa6e85ba4ed339 +SIZE (fcitx/model.text.20120921.tar.gz) = 9980454 Modified: head/chinese/fcitx/Makefile ============================================================================== --- head/chinese/fcitx/Makefile Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx/Makefile Mon Oct 15 19:13:59 2012 (r305931) @@ -1,12 +1,8 @@ -# New ports collection makefile for: Free Chinese Input Toy for X -# Date created: 26 March 2003 -# Whom: Shen Chuan-Hsing -# +# Created by: Shen Chuan-Hsing # $FreeBSD$ -# PORTNAME= fcitx -PORTVERSION= 4.2.6 +PORTVERSION= 4.2.6.1 CATEGORIES= chinese x11 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -41,6 +37,7 @@ USE_CMAKE= yes INSTALLS_ICONS= yes OPTIONS_DEFINE= GTK2 GTK3 QT4 OPENCC TPUNC +OPTIONS_DEFAULT=GTK2 GTK2_DESC= Enable Gtk2 IM module GTK3_DESC= Enable Gtk3 IM module Modified: head/chinese/fcitx/distinfo ============================================================================== --- head/chinese/fcitx/distinfo Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx/distinfo Mon Oct 15 19:13:59 2012 (r305931) @@ -1,5 +1,5 @@ -SHA256 (fcitx/fcitx-4.2.6.tar.xz) = 13479bca8d7f420f486f1e2ea733dc9a0060f18c0f08b415c3c56694f2fd775e -SIZE (fcitx/fcitx-4.2.6.tar.xz) = 1439664 +SHA256 (fcitx/fcitx-4.2.6.1.tar.xz) = b3b1fa548163701ca6009fa71362668eb973bffa8067f039d7cbe643e4769ab1 +SIZE (fcitx/fcitx-4.2.6.1.tar.xz) = 1442744 SHA256 (fcitx/pinyin.tar.gz) = 583829b24a758c087c08de4a69480d0bf5946354fe77db360d6d7f467c2bd8e1 SIZE (fcitx/pinyin.tar.gz) = 1608886 SHA256 (fcitx/table.tar.gz) = 6196053c724125e3ae3d8bd6b2f9172d0c83b65b0d410d3cde63b7a8d6ab87b7 Modified: head/chinese/fcitx/pkg-plist ============================================================================== --- head/chinese/fcitx/pkg-plist Mon Oct 15 19:10:49 2012 (r305930) +++ head/chinese/fcitx/pkg-plist Mon Oct 15 19:13:59 2012 (r305931) @@ -91,7 +91,7 @@ share/gir-1.0/Fcitx-1.0.gir %%GTK3%%lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-fcitx.so %%GTK3%%@exec gtk-query-immodules-3.0 > %%LOCALBASE%%/lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache %%GTK3%%@unexec gtk-query-immodules-3.0 > %%LOCALBASE%%/lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache -%%QT4%%lib/qt4/plugins/inputmethods/qtim-fcitx.so +%%QT4%%lib/qt4/plugins/inputmethods/libqtim-fcitx.so %%QT4%%@dirrmtry lib/qt4/plugins/inputmethods %%QT4%%@dirrmtry lib/qt4/plugins libdata/pkgconfig/fcitx-config.pc