From owner-svn-ports-head@FreeBSD.ORG Sat Sep 14 08:51:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E3CACC34; Sat, 14 Sep 2013 08:51:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D10D029F9; Sat, 14 Sep 2013 08:51:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8E8pZr8085580; Sat, 14 Sep 2013 08:51:35 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8E8pZ9X085577; Sat, 14 Sep 2013 08:51:35 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201309140851.r8E8pZ9X085577@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 14 Sep 2013 08:51:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327251 - in head/chinese/sunpinyin: . files 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: Sat, 14 Sep 2013 08:51:36 -0000 Author: sunpoet Date: Sat Sep 14 08:51:34 2013 New Revision: 327251 URL: http://svnweb.freebsd.org/changeset/ports/327251 Log: - Fix build on 10-CURRENT: disable iconv functionality by removing iconv.h detection - While I'm here: - Remove leading indefinite article from COMMENT - Remove LICENSE_FILE for well-known licenses - Covnert to new LIB_DEPENDS format - Use USES=gmake PR: ports/182079 Submitted by: Henry Hu Approved by: Zhihao Yuan (maintainer) Modified: head/chinese/sunpinyin/Makefile (contents, props changed) head/chinese/sunpinyin/files/patch-SConstruct (contents, props changed) head/chinese/sunpinyin/pkg-descr (contents, props changed) Modified: head/chinese/sunpinyin/Makefile ============================================================================== --- head/chinese/sunpinyin/Makefile Sat Sep 14 08:51:30 2013 (r327250) +++ head/chinese/sunpinyin/Makefile Sat Sep 14 08:51:34 2013 (r327251) @@ -12,22 +12,18 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:1 EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= lichray@gmail.com -COMMENT= A statistical language model based input method engine +COMMENT= Statistical language model based input method engine LICENSE= LGPL21 CDDL LICENSE_COMB= dual -LIB_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 -LICENSE_FILE_LGPL21= ${WRKSRC}/LGPL.LICENSE -LICENSE_FILE_CDDL= ${WRKSRC}/OPENSOLARIS.LICENSE - -USES= pkgconfig USE_XZ= yes USE_SCONS= yes SCONS_ARGS+= --prefix=${PREFIX} --libdatadir=${PREFIX}/share USE_LDCONFIG= yes -USE_GMAKE= yes +USES= gmake pkgconfig post-patch: @${CP} ${_DISTDIR}/lm_sc.t3g.arpa.tar.bz2 \ Modified: head/chinese/sunpinyin/files/patch-SConstruct ============================================================================== --- head/chinese/sunpinyin/files/patch-SConstruct Sat Sep 14 08:51:30 2013 (r327250) +++ head/chinese/sunpinyin/files/patch-SConstruct Sat Sep 14 08:51:34 2013 (r327251) @@ -1,6 +1,6 @@ ---- SConstruct.orig 2012-07-17 23:25:59.000000000 -0500 -+++ SConstruct 2012-07-17 23:40:11.633113871 -0500 -@@ -176,10 +176,12 @@ def CreateEnvironment(): +--- SConstruct.orig 2012-07-18 12:25:59.000000000 +0800 ++++ SConstruct 2013-09-14 14:44:54.603035259 +0800 +@@ -176,10 +176,12 @@ libln_builder = Builder(action='ln -s ${SOURCE.name} ${TARGET.name}', chdir=True) @@ -17,7 +17,15 @@ env.Append(BUILDERS={'InstallAsSymlink': libln_builder}) return env -@@ -420,7 +422,7 @@ def DoInstall(): +@@ -324,7 +326,6 @@ + conf.CheckFunc('getopt_long') + conf.CheckFunc('getpagesize') + conf.CheckFunc('get_opt') +- conf.CheckCHeader('iconv.h') + conf.CheckCHeader('inttypes.h') + conf.CheckCHeader('locale.h') + conf.CheckCHeader('libintl.h') +@@ -420,7 +421,7 @@ lib_target_bin), ] Modified: head/chinese/sunpinyin/pkg-descr ============================================================================== --- head/chinese/sunpinyin/pkg-descr Sat Sep 14 08:51:30 2013 (r327250) +++ head/chinese/sunpinyin/pkg-descr Sat Sep 14 08:51:34 2013 (r327251) @@ -2,4 +2,4 @@ SunPinyin is a statistical language mode was firstly developed by Sun Beijing Globalization team, and opensource'd to community with opensolaris project, with LGPLv2 and CDDL dual-licenses. -WWW: http://code.google.com/p/sunpinyin/ +WWW: http://code.google.com/p/sunpinyin/