From owner-svn-ports-all@FreeBSD.ORG Mon Jan 6 21:04:15 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F797ABA; Mon, 6 Jan 2014 21:04:15 +0000 (UTC) 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 2AFAC1994; Mon, 6 Jan 2014 21:04:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s06L4FGP042084; Mon, 6 Jan 2014 21:04:15 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s06L4Flg042083; Mon, 6 Jan 2014 21:04:15 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201401062104.s06L4Flg042083@svn.freebsd.org> From: Xin LI Date: Mon, 6 Jan 2014 21:04:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338933 - head/chinese/ibus-pinyin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 21:04:15 -0000 Author: delphij Date: Mon Jan 6 21:04:14 2014 New Revision: 338933 URL: http://svnweb.freebsd.org/changeset/ports/338933 Log: Revise previous change: only remove USE_GCC=yes when we are using a fresh -CURRENT (after clang have made default). PORTREVISION not bumped because this is a build fix for earlier FreeBSD versions. Reported by: Henry Hu (maintainer), kmoore Modified: head/chinese/ibus-pinyin/Makefile Modified: head/chinese/ibus-pinyin/Makefile ============================================================================== --- head/chinese/ibus-pinyin/Makefile Mon Jan 6 21:03:29 2014 (r338932) +++ head/chinese/ibus-pinyin/Makefile Mon Jan 6 21:04:14 2014 (r338933) @@ -32,6 +32,12 @@ ANDROID_DB_DESC= Build Android DB OPENPHRASE_DB_DESC= Build Open Phrase DB OPENCC_DESC= Use opencc +.include + +.if ${OSVERSION} < 1000024 +USE_GCC= yes +.endif + NO_STAGE= yes .include @@ -78,4 +84,4 @@ post-extract: post-patch: @${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' ${WRKSRC}/configure -.include +.include